diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-04-08 12:45:54 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-04-08 12:48:32 +0200 |
commit | eb9b7d0363669574de8ec380089407890f15eac2 (patch) | |
tree | 2cc4943629dfde60bb18b33c3698db4eff0bb2b4 | |
parent | e2aec9d81f53ae80bc7561fa83e88df668998a1a (diff) | |
download | samba-eb9b7d0363669574de8ec380089407890f15eac2.tar.gz samba-eb9b7d0363669574de8ec380089407890f15eac2.tar.bz2 samba-eb9b7d0363669574de8ec380089407890f15eac2.zip |
s3:winbindd: make "smbcontrol winbindd validate-cache" reliable again
commit 73577205cf81644e7fe853eaf3e6459f7f443096
(s3:winbindd: fix problems with SIGCHLD handling (bug #7317))
broke this.
metze
-rw-r--r-- | source3/winbindd/winbindd.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c index ab7011688b..a7f3a600ca 100644 --- a/source3/winbindd/winbindd.c +++ b/source3/winbindd/winbindd.c @@ -426,6 +426,9 @@ static void winbind_msg_validate_cache(struct messaging_context *msg_ctx, _exit(0); } + /* install default SIGCHLD handler: validation code uses fork/waitpid */ + CatchSignal(SIGCHLD, SIG_DFL); + ret = (uint8)winbindd_validate_cache_nobackup(); DEBUG(10, ("winbindd_msg_validata_cache: got return value %d\n", ret)); messaging_send_buf(msg_ctx, server_id, MSG_WINBIND_VALIDATE_CACHE, &ret, |