diff options
author | Michael Adam <obnox@samba.org> | 2007-12-29 22:29:33 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2007-12-30 00:32:42 +0100 |
commit | d674b95357b34a89b915af68fa12aa6b4169198d (patch) | |
tree | c1bc0b964d3aa70e31ee04fbdca583af07eb75b3 | |
parent | 1f992517ec67be36b03decefcac03ba71eec8705 (diff) | |
download | samba-d674b95357b34a89b915af68fa12aa6b4169198d.tar.gz samba-d674b95357b34a89b915af68fa12aa6b4169198d.tar.bz2 samba-d674b95357b34a89b915af68fa12aa6b4169198d.zip |
Make libnet_smbconf_reg_open_path() static.
Michael
(This used to be commit 6447bae71c99407485307dd508603c73d5bb9823)
-rw-r--r-- | source3/libnet/libnet_conf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/libnet/libnet_conf.c b/source3/libnet/libnet_conf.c index 099754cbf4..1069abcfbd 100644 --- a/source3/libnet/libnet_conf.c +++ b/source3/libnet/libnet_conf.c @@ -58,10 +58,10 @@ static WERROR libnet_smbconf_add_string_to_array(TALLOC_CTX *mem_ctx, /* * Open a subkey of KEY_SMBCONF (i.e a service) */ -WERROR libnet_smbconf_reg_open_path(TALLOC_CTX *ctx, - const char *subkeyname, - uint32 desired_access, - struct registry_key **key) +static WERROR libnet_smbconf_reg_open_path(TALLOC_CTX *ctx, + const char *subkeyname, + uint32 desired_access, + struct registry_key **key) { WERROR werr = WERR_OK; char *path = NULL; |