1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-05 21:57:51 +03:00

Replace direct deletion of registry value by use of libnet_smbconf_delparm().

Michael
(This used to be commit 415fc0a5261f4d941027e5d5305fcea882724aef)
This commit is contained in:
Michael Adam 2007-12-23 03:02:19 +01:00
parent b04708866f
commit bd2b8f0f7b

View File

@ -398,7 +398,7 @@ static WERROR do_unjoin_modify_vals_config(TALLOC_CTX *mem_ctx,
W_ERROR_NOT_OK_RETURN(werr); W_ERROR_NOT_OK_RETURN(werr);
} }
reg_deletevalue(key, "realm"); werr = libnet_smbconf_delparm(mem_ctx, "GLOBAL", "realm");
return werr; return werr;
} }