From: Stefan Metzmacher Date: Fri, 31 Dec 2004 07:40:14 +0000 (+0000) Subject: r4439: unlimited connections is -1 X-Git-Tag: samba-4.0.0alpha6~801^3~12152 X-Git-Url: http://git.samba.org/?p=samba.git;a=commitdiff_plain;h=f53293ffbfe37fd8a3bb1a7ec509b356ef2259c7 r4439: unlimited connections is -1 metze (This used to be commit e62b36bef193f6a58ee035d581ef0f574f1e2910) --- diff --git a/source4/param/loadparm.c b/source4/param/loadparm.c index 17769c59651..8e535c09005 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;