summaryrefslogtreecommitdiff
path: root/source3/nsswitch
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2002-10-23 00:23:30 +0000
committerAndrew Tridgell <tridge@samba.org>2002-10-23 00:23:30 +0000
commitef372e36f08c8cd370c1a8a70c60b045c4e736c3 (patch)
treeb9dce428da90b86ed1a99334430ca0f9a2bcb040 /source3/nsswitch
parent306e4cbead22e2bb12f699d0072eb8d5b1bc6733 (diff)
downloadsamba-ef372e36f08c8cd370c1a8a70c60b045c4e736c3.tar.gz
samba-ef372e36f08c8cd370c1a8a70c60b045c4e736c3.tar.bz2
samba-ef372e36f08c8cd370c1a8a70c60b045c4e736c3.zip
if trusted domains are disabled then we should not try to connect to
them in winbindd (This used to be commit 6c7748b001836e4aa3e23dedfe28db3c8acc197a)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r--source3/nsswitch/winbindd_util.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_util.c b/source3/nsswitch/winbindd_util.c
index c8afea2f72..fd3e547afb 100644
--- a/source3/nsswitch/winbindd_util.c
+++ b/source3/nsswitch/winbindd_util.c
@@ -153,12 +153,17 @@ void rescan_trusted_domains(void)
static time_t last_scan;
time_t t = time(NULL);
+ /* trusted domains might be disabled */
+ if (!lp_allow_trusted_domains()) {
+ return;
+ }
+
/* ony rescan every few minutes */
if ((unsigned)(t - last_scan) < WINBINDD_RESCAN_FREQ) {
return;
}
last_scan = t;
-
+
DEBUG(1, ("scanning trusted domain list\n"));
if (!(mem_ctx = talloc_init_named("init_domain_list")))