From: Michael Adam Date: Wed, 16 Jan 2008 23:16:58 +0000 (+0100) Subject: Make utility function reg_deletekey_recursive_internal() static. X-Git-Tag: samba-4.0.0alpha6~801^2~3862^2~23 X-Git-Url: http://git.samba.org/samba.git/?p=ira%2Fwip.git;a=commitdiff_plain;h=1a15320dcdf72884a4250d535e46315bcf1aa9ee Make utility function reg_deletekey_recursive_internal() static. Michael (This used to be commit 3e661273229bcf021276cc0b71350acf8d8fed7c) --- diff --git a/source3/registry/reg_api.c b/source3/registry/reg_api.c index d1657c8cf60..cef14e2ca10 100644 --- a/source3/registry/reg_api.c +++ b/source3/registry/reg_api.c @@ -715,10 +715,10 @@ WERROR reg_open_path(TALLOC_CTX *mem_ctx, const char *orig_path, * Note that reg_deletekey returns ACCESS_DENIED when called on a * key that has subkeys. */ -WERROR reg_deletekey_recursive_internal(TALLOC_CTX *ctx, - struct registry_key *parent, - const char *path, - bool del_key) +static WERROR reg_deletekey_recursive_internal(TALLOC_CTX *ctx, + struct registry_key *parent, + const char *path, + bool del_key) { TALLOC_CTX *mem_ctx = NULL; WERROR werr = WERR_OK;