From 1a15320dcdf72884a4250d535e46315bcf1aa9ee Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 17 Jan 2008 00:16:58 +0100 Subject: Make utility function reg_deletekey_recursive_internal() static. Michael (This used to be commit 3e661273229bcf021276cc0b71350acf8d8fed7c) --- source3/registry/reg_api.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source3/registry/reg_api.c b/source3/registry/reg_api.c index d1657c8cf6..cef14e2ca1 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; -- cgit