summaryrefslogtreecommitdiff
path: root/source3/registry/reg_api.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-01-17 00:16:58 +0100
committerMichael Adam <obnox@samba.org>2008-01-17 16:25:11 +0100
commit1a15320dcdf72884a4250d535e46315bcf1aa9ee (patch)
tree5e3afc6a5cfadfe245591a3299493731bf90ecc8 /source3/registry/reg_api.c
parent8c2d440c1ffc8f2b5baf0c2519e7f26e4bfa4aeb (diff)
downloadsamba-1a15320dcdf72884a4250d535e46315bcf1aa9ee.tar.gz
samba-1a15320dcdf72884a4250d535e46315bcf1aa9ee.tar.bz2
samba-1a15320dcdf72884a4250d535e46315bcf1aa9ee.zip
Make utility function reg_deletekey_recursive_internal() static.
Michael (This used to be commit 3e661273229bcf021276cc0b71350acf8d8fed7c)
Diffstat (limited to 'source3/registry/reg_api.c')
-rw-r--r--source3/registry/reg_api.c8
1 files 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;