summaryrefslogtreecommitdiff
path: root/source3/nsswitch/winbindd.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2002-11-07 07:17:09 +0000
committerJeremy Allison <jra@samba.org>2002-11-07 07:17:09 +0000
commitf3fe0aa48c0b86dff4e572a8e76c8fa3b1ea1d3a (patch)
tree1698d2e9d52561502cfac5607804ca761c1d7598 /source3/nsswitch/winbindd.c
parent8980fcf1eadf2df8c42b2625b1c34aa2904adf8e (diff)
downloadsamba-f3fe0aa48c0b86dff4e572a8e76c8fa3b1ea1d3a.tar.gz
samba-f3fe0aa48c0b86dff4e572a8e76c8fa3b1ea1d3a.tar.bz2
samba-f3fe0aa48c0b86dff4e572a8e76c8fa3b1ea1d3a.zip
Keep branches in sync.....
Jeremy. (This used to be commit faf92207e71980aaaad8b5487f5c2d6a60f7ddd1)
Diffstat (limited to 'source3/nsswitch/winbindd.c')
-rw-r--r--source3/nsswitch/winbindd.c33
1 files changed, 19 insertions, 14 deletions
diff --git a/source3/nsswitch/winbindd.c b/source3/nsswitch/winbindd.c
index 0df9408a60..059d2f40d3 100644
--- a/source3/nsswitch/winbindd.c
+++ b/source3/nsswitch/winbindd.c
@@ -3,7 +3,7 @@
Winbind daemon for ntdom nss module
- Copyright (C) by Tim Potter 2000, 2001
+ Copyright (C) by Tim Potter 2000-2002
Copyright (C) Andrew Tridgell 2002
This program is free software; you can redistribute it and/or modify
@@ -507,6 +507,10 @@ static void process_loop(void)
message_dispatch();
+ /* rescan the trusted domains list. This must be done
+ regularly to cope with transitive trusts */
+ rescan_trusted_domains();
+
/* Free up temporary memory */
lp_talloc_free();
@@ -666,19 +670,23 @@ static void process_loop(void)
/*
these are split out from the main winbindd for use by the background daemon
*/
-int winbind_setup_common(void)
+BOOL winbind_setup_common(void)
{
- load_interfaces();
+ load_interfaces();
if (!secrets_init()) {
DEBUG(0,("Could not initialize domain trust account secrets. Giving up\n"));
- return 1;
-
+ return False;
}
namecache_enable(); /* Enable netbios namecache */
+ /* Check winbindd parameters are valid */
+
+ if (!winbindd_param_init())
+ return False;
+
/* Get list of domains we look up requests for. This includes the
domain which we are a member of as well as any trusted
domains. */
@@ -689,11 +697,8 @@ int winbind_setup_common(void)
/* Winbind daemon initialisation */
- if (!winbindd_param_init())
- return 1;
-
if (!winbindd_idmap_init())
- return 1;
+ return False;
/* Unblock all signals we are interested in as they may have been
blocked by the parent process. */
@@ -716,7 +721,7 @@ int winbind_setup_common(void)
CatchSignal(SIGUSR2, sigusr2_handler); /* Debugging sigs */
CatchSignal(SIGHUP, sighup_handler);
- return 0;
+ return True;
}
@@ -853,12 +858,12 @@ static void usage(void)
setpgid( (pid_t)0, (pid_t)0);
#endif
- if (opt_dual_daemon) {
- do_dual_daemon();
+ if (!winbind_setup_common()) {
+ return 1;
}
- if (winbind_setup_common() != 0) {
- return 1;
+ if (opt_dual_daemon) {
+ do_dual_daemon();
}
/* Initialise messaging system */