Changeset 411 for branches/samba-3.3.x/source/winbindd
- Timestamp:
- Mar 1, 2010, 3:05:48 PM (15 years ago)
- Location:
- branches/samba-3.3.x/source/winbindd
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/winbindd/winbindd_cm.c
r342 r411 1619 1619 1620 1620 /* Internal connections never use the network. */ 1621 if (domain->internal ) {1621 if (domain->internal || !winbindd_can_contact_domain(domain)) { 1622 1622 domain->initialized = True; 1623 1623 return NT_STATUS_OK; … … 1747 1747 domain->initialized = True; 1748 1748 1749 if ( !winbindd_can_contact_domain( domain) )1750 domain->internal = True;1751 1752 1749 break; 1753 1750 } -
branches/samba-3.3.x/source/winbindd/winbindd_domain.c
r206 r411 25 25 #undef DBGC_CLASS 26 26 #define DBGC_CLASS DBGC_WINBIND 27 28 static const struct winbindd_child_dispatch_table domain_dispatch_table[];29 30 void setup_domain_child(struct winbindd_domain *domain,31 struct winbindd_child *child)32 {33 setup_child(child, domain_dispatch_table,34 "log.wb", domain->name);35 36 child->domain = domain;37 }38 27 39 28 static const struct winbindd_child_dispatch_table domain_dispatch_table[] = { … … 118 107 } 119 108 }; 109 110 void setup_domain_child(struct winbindd_domain *domain, 111 struct winbindd_child *child) 112 { 113 setup_child(child, domain_dispatch_table, 114 "log.wb", domain->name); 115 116 child->domain = domain; 117 } -
branches/samba-3.3.x/source/winbindd/winbindd_idmap.c
r206 r411 39 39 #define DBGC_CLASS DBGC_WINBIND 40 40 41 static const struct winbindd_child_dispatch_table idmap_dispatch_table[];42 43 41 static struct winbindd_child static_idmap_child; 44 45 void init_idmap_child(void)46 {47 setup_child(&static_idmap_child,48 idmap_dispatch_table,49 "log.winbindd", "idmap");50 }51 42 52 43 struct winbindd_child *idmap_child(void) … … 565 556 } 566 557 }; 558 559 void init_idmap_child(void) 560 { 561 setup_child(&static_idmap_child, 562 idmap_dispatch_table, 563 "log.winbindd", "idmap"); 564 } -
branches/samba-3.3.x/source/winbindd/winbindd_locator.c
r206 r411 28 28 29 29 30 static const struct winbindd_child_dispatch_table locator_dispatch_table[];31 32 30 static struct winbindd_child static_locator_child; 33 34 void init_locator_child(void)35 {36 setup_child(&static_locator_child,37 locator_dispatch_table,38 "log.winbindd", "locator");39 }40 31 41 32 struct winbindd_child *locator_child(void) … … 165 156 } 166 157 }; 158 159 void init_locator_child(void) 160 { 161 setup_child(&static_locator_child, 162 locator_dispatch_table, 163 "log.winbindd", "locator"); 164 }
Note:
See TracChangeset
for help on using the changeset viewer.