diff options
Diffstat (limited to 'source3/smbd/server.c')
-rw-r--r-- | source3/smbd/server.c | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c index 9cc88d4d1a4..ef3f140f78e 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -1231,15 +1231,17 @@ extern void build_options(bool screen); exit(1); } - /* - * Do not initialize the parent-child-pipe before becoming - * a daemon: this is used to detect a died parent in the child - * process. - */ - status = init_before_fork(); - if (!NT_STATUS_IS_OK(status)) { - DEBUG(0, ("init_before_fork failed: %s\n", nt_errstr(status))); - exit(1); + if (!interactive) { + /* + * Do not initialize the parent-child-pipe before becoming a + * daemon: this is used to detect a died parent in the child + * process. + */ + status = init_before_fork(); + if (!NT_STATUS_IS_OK(status)) { + DEBUG(0, ("init_before_fork failed: %s\n", nt_errstr(status))); + exit(1); + } } smbd_server_conn->msg_ctx = msg_ctx; |