diff options
author | Michael Adam <obnox@samba.org> | 2007-12-23 01:43:13 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2007-12-23 04:10:31 +0100 |
commit | aeea4bfadd98f23df71c5754bef7defc42d2f67f (patch) | |
tree | 3ef01bb841ebe3e1dc12fc8ebd5fec7b98042eff /source3/libnet | |
parent | f980d3ea14c020869102d8cd90fb69ecc2f78416 (diff) | |
download | samba-aeea4bfadd98f23df71c5754bef7defc42d2f67f.tar.gz samba-aeea4bfadd98f23df71c5754bef7defc42d2f67f.tar.bz2 samba-aeea4bfadd98f23df71c5754bef7defc42d2f67f.zip |
Make libnet_smbconf_open_path_q() static.
Michael
(This used to be commit 8cf8ed9de8c3f41588fa93bd102f61f5b8b493c4)
Diffstat (limited to 'source3/libnet')
-rw-r--r-- | source3/libnet/libnet_conf.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/source3/libnet/libnet_conf.c b/source3/libnet/libnet_conf.c index 8bc5161268..dcaa7689b3 100644 --- a/source3/libnet/libnet_conf.c +++ b/source3/libnet/libnet_conf.c @@ -24,9 +24,10 @@ * Open a subkey of KEY_SMBCONF (i.e a service) * - variant without error output (q = quiet)- */ -WERROR libnet_smbconf_open_path_q(TALLOC_CTX *ctx, const char *subkeyname, - uint32 desired_access, - struct registry_key **key) +static WERROR libnet_smbconf_open_path_q(TALLOC_CTX *ctx, + const char *subkeyname, + uint32 desired_access, + struct registry_key **key) { WERROR werr = WERR_OK; char *path = NULL; |