diff options
author | Michael Adam <obnox@samba.org> | 2008-01-17 00:16:58 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-01-17 16:25:11 +0100 |
commit | 1a15320dcdf72884a4250d535e46315bcf1aa9ee (patch) | |
tree | 5e3afc6a5cfadfe245591a3299493731bf90ecc8 /source3 | |
parent | 8c2d440c1ffc8f2b5baf0c2519e7f26e4bfa4aeb (diff) | |
download | samba-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')
-rw-r--r-- | source3/registry/reg_api.c | 8 |
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; |