From bceb34543e68306ad7cf69894302682e916b2325 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sun, 22 Sep 2013 03:45:28 +0200 Subject: s3:net rpc conf: remove the (now) unused rpc_conf_reg_valname_forbidden() Signed-off-by: Michael Adam Reviewed-by: Andrew Bartlett --- source3/utils/net_rpc_conf.c | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'source3/utils') diff --git a/source3/utils/net_rpc_conf.c b/source3/utils/net_rpc_conf.c index 5396e0f6d4..0893442620 100644 --- a/source3/utils/net_rpc_conf.c +++ b/source3/utils/net_rpc_conf.c @@ -175,27 +175,6 @@ static int rpc_conf_delincludes_usage(struct net_context *c, int argc, * **********************************************************/ -static bool rpc_conf_reg_valname_forbidden(const char * valname) -{ - const char *forbidden_valnames[] = { - "lock directory", - "lock dir", - "config backend", - "include", - "includes", /* this has a special meaning internally */ - NULL - }; - const char **forbidden = NULL; - - for (forbidden = forbidden_valnames; *forbidden != NULL; forbidden++) { - if (strwicmp(valname, *forbidden) == 0) { - return true; - } - } - return false; - -} - /* * The function deletes a registry value with the name 'value' from the share * with the name 'share_name'. 'parent_hnd' is the handle for the smbconf key. -- cgit