From cc9b6ef9cadf31b576609308d24657e921c644d1 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Fri, 8 Nov 2002 23:46:45 +0000 Subject: defunct winbindd fix from APP_HEAD (This used to be commit 488e985caa0b0e3e2a6665eb2515a2c99745d861) --- source3/nsswitch/winbindd_dual.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'source3/nsswitch') diff --git a/source3/nsswitch/winbindd_dual.c b/source3/nsswitch/winbindd_dual.c index a7523138ea..f31a4f2de4 100644 --- a/source3/nsswitch/winbindd_dual.c +++ b/source3/nsswitch/winbindd_dual.c @@ -143,7 +143,7 @@ void do_dual_daemon(void) { int fdpair[2]; struct winbindd_cli_state state; - + if (pipe(fdpair) != 0) { return; } @@ -160,7 +160,12 @@ void do_dual_daemon(void) } close(fdpair[1]); - if (winbind_setup_common() != 0) _exit(0); + + sleep (60); + DEBUG(0,("do_dual_daemon: Starting up....\n")); + + if (!winbind_setup_common()) + _exit(0); dual_daemon_pipe = -1; opt_dual_daemon = False; -- cgit