diff options
author | Michael Adam <obnox@samba.org> | 2008-01-03 13:46:45 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-01-03 14:17:49 +0100 |
commit | 12a0cd531060f6a54c7600f3682bbb37fe91bac1 (patch) | |
tree | f89efeaceebcfb0d1ee47ca776a13df09d9e9c82 | |
parent | 6ab11e5f981618f58ebd82b89a79846ac048aadf (diff) | |
download | samba-12a0cd531060f6a54c7600f3682bbb37fe91bac1.tar.gz samba-12a0cd531060f6a54c7600f3682bbb37fe91bac1.tar.bz2 samba-12a0cd531060f6a54c7600f3682bbb37fe91bac1.zip |
Rename libnet_smbconf_reg_get_values() to libnet_conf_reg_get_values().
Now all internal helper functions are converted to the consistent
naming scheme.
Michael
(This used to be commit c23e6636a886d93b98c9439ba081def0385f67ac)
-rw-r--r-- | source3/libnet/libnet_conf.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/libnet/libnet_conf.c b/source3/libnet/libnet_conf.c index 9a0cd9ff2f..191692dc62 100644 --- a/source3/libnet/libnet_conf.c +++ b/source3/libnet/libnet_conf.c @@ -311,11 +311,11 @@ static char *libnet_conf_format_registry_value(TALLOC_CTX *mem_ctx, * Get the values of a key as a list of value names * and a list of value strings (ordered) */ -static WERROR libnet_smbconf_reg_get_values(TALLOC_CTX *mem_ctx, - struct registry_key *key, - uint32_t *num_values, - char ***value_names, - char ***value_strings) +static WERROR libnet_conf_reg_get_values(TALLOC_CTX *mem_ctx, + struct registry_key *key, + uint32_t *num_values, + char ***value_names, + char ***value_strings) { TALLOC_CTX *tmp_ctx = NULL; WERROR werr = WERR_OK; @@ -646,8 +646,8 @@ WERROR libnet_smbconf_getshare(TALLOC_CTX *mem_ctx, const char *servicename, goto done; } - werr = libnet_smbconf_reg_get_values(mem_ctx, key, num_params, - param_names, param_values); + werr = libnet_conf_reg_get_values(mem_ctx, key, num_params, + param_names, param_values); done: TALLOC_FREE(key); |