Changeset 597 for vendor/current/source3/winbindd/winbindd.c
- Timestamp:
- Jul 2, 2011, 4:01:14 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/winbindd/winbindd.c
r478 r597 1014 1014 int opt; 1015 1015 TALLOC_CTX *frame = talloc_stackframe(); 1016 struct tevent_timer *te;1017 1016 1018 1017 /* glibc (?) likes to print "User defined signal 1" and exit if a … … 1261 1260 } 1262 1261 1263 te = tevent_add_timer(winbind_event_context(), NULL, timeval_zero(), 1264 rescan_trusted_domains, NULL); 1265 if (te == NULL) { 1266 DEBUG(0, ("Could not trigger rescan_trusted_domains()\n")); 1267 exit(1); 1262 if (lp_allow_trusted_domains()) { 1263 if (tevent_add_timer(winbind_event_context(), NULL, timeval_zero(), 1264 rescan_trusted_domains, NULL) == NULL) { 1265 DEBUG(0, ("Could not trigger rescan_trusted_domains()\n")); 1266 exit(1); 1267 } 1268 1268 } 1269 1269
Note:
See TracChangeset
for help on using the changeset viewer.