summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-01-03 13:43:34 +0100
committerMichael Adam <obnox@samba.org>2008-01-03 14:17:48 +0100
commit547c3583e42e22e42432a10c79803219ee043dc7 (patch)
treefe878e95c6f7e3c79b058b466b661b7b2d60f626
parent340cb434db8d3e063a2fb15cb74e550e90c4cf95 (diff)
downloadsamba-547c3583e42e22e42432a10c79803219ee043dc7.tar.gz
samba-547c3583e42e22e42432a10c79803219ee043dc7.tar.bz2
samba-547c3583e42e22e42432a10c79803219ee043dc7.zip
Rename libnet_smbconf_reg_set_value() to libnet_conf_reg_set_value().
Michael (This used to be commit 96b2923bc3c57700352869627c38609529d53cd2)
-rw-r--r--source3/libnet/libnet_conf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/libnet/libnet_conf.c b/source3/libnet/libnet_conf.c
index b88242ef8a..594e1f7a1d 100644
--- a/source3/libnet/libnet_conf.c
+++ b/source3/libnet/libnet_conf.c
@@ -196,9 +196,9 @@ done:
/*
* add a value to a key.
*/
-static WERROR libnet_smbconf_reg_set_value(struct registry_key *key,
- const char *valname,
- const char *valstr)
+static WERROR libnet_conf_reg_set_value(struct registry_key *key,
+ const char *valname,
+ const char *valstr)
{
struct registry_value val;
WERROR werr = WERR_OK;
@@ -697,7 +697,7 @@ WERROR libnet_smbconf_setparm(const char *service,
goto done;
}
- werr = libnet_smbconf_reg_set_value(key, param, valstr);
+ werr = libnet_conf_reg_set_value(key, param, valstr);
done:
TALLOC_FREE(mem_ctx);