From f53293ffbfe37fd8a3bb1a7ec509b356ef2259c7 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 31 Dec 2004 07:40:14 +0000 Subject: r4439: unlimited connections is -1 metze (This used to be commit e62b36bef193f6a58ee035d581ef0f574f1e2910) --- source4/param/loadparm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/param') diff --git a/source4/param/loadparm.c b/source4/param/loadparm.c index 17769c5965..8e535c0900 100644 --- a/source4/param/loadparm.c +++ b/source4/param/loadparm.c @@ -1669,7 +1669,7 @@ static BOOL lp_add_hidden(const char *name, const char *fstype, BOOL guest_ok) string_set(&ServicePtrs[i]->szUsername, ""); string_set(&ServicePtrs[i]->comment, comment); string_set(&ServicePtrs[i]->fstype, fstype); - ServicePtrs[i]->iMaxConnections = 0; + ServicePtrs[i]->iMaxConnections = -1; ServicePtrs[i]->bAvailable = True; ServicePtrs[i]->bRead_only = True; ServicePtrs[i]->bGuest_only = False; -- cgit