From 0cc131629bd819eafd31540a35f8d9c11ec3b28f 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 (cherry picked from commit e513360db3f2cc6ff1865ec08fc243dd6346e18e) --- source/utils/net_conf.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/source/utils/net_conf.c b/source/utils/net_conf.c index ab1b0f3df76..3d542fc1bce 100644 --- a/source/utils/net_conf.c +++ b/source/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.11.4.GIT