summaryrefslogtreecommitdiff
path: root/source3/utils/net_conf.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-03-21 02:20:16 +0100
committerMichael Adam <obnox@samba.org>2008-03-21 02:25:56 +0100
commitfececde1815bf0469bb56e07cf23f54011c9b4ae (patch)
treee8ef7c441bf3b8f9268876b33a791e9c87e9012d /source3/utils/net_conf.c
parent6c20e83294f1b288142a2621a393d7c501532d69 (diff)
downloadsamba-fececde1815bf0469bb56e07cf23f54011c9b4ae.tar.gz
samba-fececde1815bf0469bb56e07cf23f54011c9b4ae.tar.bz2
samba-fececde1815bf0469bb56e07cf23f54011c9b4ae.zip
libsmbconf: add backend specific init function.
Hide generic init function taking smbconf_ops argument from public api. Michael (This used to be commit b3f6920ccb9a27fde26e889a7f1f3afaf56b784f)
Diffstat (limited to 'source3/utils/net_conf.c')
-rw-r--r--source3/utils/net_conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_conf.c b/source3/utils/net_conf.c
index 118196976d..cde3ab0a92 100644
--- a/source3/utils/net_conf.c
+++ b/source3/utils/net_conf.c
@@ -889,7 +889,7 @@ static int net_conf_wrap_function(int (*fn)(struct smbconf_ctx *,
struct smbconf_ctx *conf_ctx;
int ret = -1;
- werr = smbconf_init(mem_ctx, &conf_ctx);
+ werr = smbconf_init_reg(mem_ctx, &conf_ctx);
if (!W_ERROR_IS_OK(werr)) {
return -1;