summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-03-16 14:48:40 +0100
committerStefan Metzmacher <metze@samba.org>2009-03-18 07:00:38 +0100
commit445b37f4f35ff4256c46dbacc2d3b3a1e47e62b2 (patch)
tree710784df4c030dc4910869c23eca46fa5af201c5 /source3
parentcd7f62ab70337ccee7ba652e7d9ed8d299938bff (diff)
downloadsamba-445b37f4f35ff4256c46dbacc2d3b3a1e47e62b2.tar.gz
samba-445b37f4f35ff4256c46dbacc2d3b3a1e47e62b2.tar.bz2
samba-445b37f4f35ff4256c46dbacc2d3b3a1e47e62b2.zip
s3:smbd: don't exit the parent when we have no connections
This code path can't really happen anymore, because launchd support was removed with commit e5a951325a6cac8567af3a66de6d2df577508ae4. But it's confusing to have that code there... metze
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/server.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c
index 538e04938e..2400b5c104 100644
--- a/source3/smbd/server.c
+++ b/source3/smbd/server.c
@@ -693,13 +693,6 @@ static void smbd_parent_loop(struct smbd_parent_context *parent)
if (num < 0)
exit_server_cleanly("socket error");
- /* If the idle timeout fired and we don't have any connected
- * users, exit gracefully. We should be running under a process
- * controller that will restart us if necessry.
- */
- if (num == 0 && count_all_current_connections() == 0) {
- exit_server_cleanly("idle timeout");
- }
TALLOC_FREE(frame);
} /* end while 1 */