summaryrefslogtreecommitdiff
path: root/source3/libnet
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-01-03 13:45:14 +0100
committerMichael Adam <obnox@samba.org>2008-01-03 14:17:49 +0100
commit6ab11e5f981618f58ebd82b89a79846ac048aadf (patch)
tree1a35f8ff26b0745601fb73331aa17a84d34a26aa /source3/libnet
parent547c3583e42e22e42432a10c79803219ee043dc7 (diff)
downloadsamba-6ab11e5f981618f58ebd82b89a79846ac048aadf.tar.gz
samba-6ab11e5f981618f58ebd82b89a79846ac048aadf.tar.bz2
samba-6ab11e5f981618f58ebd82b89a79846ac048aadf.zip
Rename libnet_smbconf_format_registry_value() to libnet_conf_format_registry_value().
Michael (This used to be commit 3f9f35335127a673639fa30c88cdea6c79f04b92)
Diffstat (limited to 'source3/libnet')
-rw-r--r--source3/libnet/libnet_conf.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/libnet/libnet_conf.c b/source3/libnet/libnet_conf.c
index 594e1f7a1d..9a0cd9ff2f 100644
--- a/source3/libnet/libnet_conf.c
+++ b/source3/libnet/libnet_conf.c
@@ -270,8 +270,8 @@ done:
* which are ar stored as REG_SZ values, so the incomplete
* handling should be ok.
*/
-static char *libnet_smbconf_format_registry_value(TALLOC_CTX *mem_ctx,
- struct registry_value *value)
+static char *libnet_conf_format_registry_value(TALLOC_CTX *mem_ctx,
+ struct registry_value *value)
{
char *result = NULL;
@@ -352,8 +352,8 @@ static WERROR libnet_smbconf_reg_get_values(TALLOC_CTX *mem_ctx,
goto done;
}
- valstring = libnet_smbconf_format_registry_value(tmp_ctx,
- valvalue);
+ valstring = libnet_conf_format_registry_value(tmp_ctx,
+ valvalue);
werr = libnet_conf_add_string_to_array(tmp_ctx,
&tmp_valstrings,
count,
@@ -742,7 +742,7 @@ WERROR libnet_smbconf_getparm(TALLOC_CTX *mem_ctx,
goto done;
}
- *valstr = libnet_smbconf_format_registry_value(mem_ctx, value);
+ *valstr = libnet_conf_format_registry_value(mem_ctx, value);
if (*valstr == NULL) {
werr = WERR_NOMEM;