From 55f2cb18adf4bed0e6770bc33278ef6bf0c64e17 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Fri, 6 Feb 2009 10:42:11 +0100 Subject: [PATCH] s3:net conf: remove check for sharename being a usernam in "net conf addshare" This is useless and can be overriden by "net conf setparm" anyways. Michael --- source3/utils/net_conf.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/source3/utils/net_conf.c b/source3/utils/net_conf.c index 31e87ca804a..0c2cd24fb2e 100644 --- a/source3/utils/net_conf.c +++ b/source3/utils/net_conf.c @@ -576,12 +576,6 @@ static int net_conf_addshare(struct net_context *c, goto done; } - if (getpwnam(sharename)) { - d_fprintf(stderr, "ERROR: share name %s is already a valid " - "system user name.\n", sharename); - goto done; - } - if (strequal(sharename, GLOBAL_NAME)) { d_fprintf(stderr, "ERROR: 'global' is not a valid share name.\n"); -- 2.34.1