Changeset 411 for branches/samba-3.3.x/source/winbindd/winbindd_domain.c
- Timestamp:
- Mar 1, 2010, 3:05:48 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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 }
Note:
See TracChangeset
for help on using the changeset viewer.