diff options
author | Michael Adam <obnox@samba.org> | 2007-12-29 22:11:09 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2007-12-30 00:32:41 +0100 |
commit | 59128c783761c6f823971e7aa9513834a7be4b7d (patch) | |
tree | a52995f371272e23a3890f7f8b347336de943b30 /source3/libnet | |
parent | 9c1449594458ad6f019f48072bba2b1c831b628b (diff) | |
download | samba-59128c783761c6f823971e7aa9513834a7be4b7d.tar.gz samba-59128c783761c6f823971e7aa9513834a7be4b7d.tar.bz2 samba-59128c783761c6f823971e7aa9513834a7be4b7d.zip |
Remove list_values() from net_conf.c - it is not needed any more.
Also make libnet.c:libnet_smbconf_format_registry_value() static.
(There are nor more external callers.)
Michael
(This used to be commit ac7baa17e89d2363b5b3db85de9c842b596dea25)
Diffstat (limited to 'source3/libnet')
-rw-r--r-- | source3/libnet/libnet_conf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/libnet/libnet_conf.c b/source3/libnet/libnet_conf.c index 642b6880ec..3c04c1333f 100644 --- a/source3/libnet/libnet_conf.c +++ b/source3/libnet/libnet_conf.c @@ -257,8 +257,8 @@ done: * which are ar stored as REG_SZ values, so the incomplete * handling should be ok. */ -char *libnet_smbconf_format_registry_value(TALLOC_CTX *mem_ctx, - struct registry_value *value) +static char *libnet_smbconf_format_registry_value(TALLOC_CTX *mem_ctx, + struct registry_value *value) { char *result = NULL; |