From 0c4e5fcc536723ac2e3c55273fc50d1727e91d0f Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sun, 22 Sep 2013 03:44:58 +0200 Subject: s3:net rpc conf: use the published smbconf_reg_parameter_is_valid() Instead of the duplicated rpc_conf_reg_valname_forbidden() Signed-off-by: Michael Adam Reviewed-by: Andrew Bartlett --- source3/utils/net_rpc_conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/utils') diff --git a/source3/utils/net_rpc_conf.c b/source3/utils/net_rpc_conf.c index 8c5717c519..5396e0f6d4 100644 --- a/source3/utils/net_rpc_conf.c +++ b/source3/utils/net_rpc_conf.c @@ -1859,7 +1859,7 @@ static NTSTATUS rpc_conf_setparm_internal(struct net_context *c, goto error; } - if (rpc_conf_reg_valname_forbidden(canon_valname)) { + if (!smbconf_reg_parameter_is_valid(canon_valname)) { d_fprintf(stderr, "Parameter '%s' not allowed in registry.\n", canon_valname); werr = WERR_INVALID_PARAM; -- cgit