summaryrefslogtreecommitdiff
path: root/source3/smbd/process.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2001-10-11 05:53:15 +0000
committerJeremy Allison <jra@samba.org>2001-10-11 05:53:15 +0000
commit76745313b16c07092b0198da4d4fc05b38e600f7 (patch)
tree3fb231a7ba58685c61d5abe2b2d227d8376b88f8 /source3/smbd/process.c
parentb51d52ed307e91ab93867d2316d4ab889d2fb344 (diff)
downloadsamba-76745313b16c07092b0198da4d4fc05b38e600f7.tar.gz
samba-76745313b16c07092b0198da4d4fc05b38e600f7.tar.bz2
samba-76745313b16c07092b0198da4d4fc05b38e600f7.zip
Fixed bug when status=no and max smbd processes > 0.
Jeremy. (This used to be commit d1adaee373f08020d350af2aa65b7651da94bdae)
Diffstat (limited to 'source3/smbd/process.c')
-rw-r--r--source3/smbd/process.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c
index 4b0da0b466..4b7e80811c 100644
--- a/source3/smbd/process.c
+++ b/source3/smbd/process.c
@@ -804,6 +804,12 @@ static BOOL smbd_process_limit(void)
total_smbds = 1; /* In case we need to create the entry. */
+ if (!conn_tdb_ctx()) {
+ DEBUG(0,("smbd_process_limit: max smbd processes parameter set with status parameter not \
+set. Ignoring max smbd restriction.\n"));
+ return False;
+ }
+
if (tdb_change_int_atomic(conn_tdb_ctx(), "INFO/total_smbds", &total_smbds, 1) == -1)
return True;