Ignore:
Timestamp:
Jul 2, 2011, 4:01:14 PM (14 years ago)
Author:
Herwig Bauernfeind
Message:

Samba 3.5: Update vendor to version 3.5.9

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/winbindd/winbindd.c

    r478 r597  
    10141014        int opt;
    10151015        TALLOC_CTX *frame = talloc_stackframe();
    1016         struct tevent_timer *te;
    10171016
    10181017        /* glibc (?) likes to print "User defined signal 1" and exit if a
     
    12611260        }
    12621261
    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                }
    12681268        }
    12691269
Note: See TracChangeset for help on using the changeset viewer.