diff options
author | Michael Adam <obnox@samba.org> | 2008-03-21 02:20:16 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-03-21 02:25:56 +0100 |
commit | fececde1815bf0469bb56e07cf23f54011c9b4ae (patch) | |
tree | e8ef7c441bf3b8f9268876b33a791e9c87e9012d /source3/lib/netapi | |
parent | 6c20e83294f1b288142a2621a393d7c501532d69 (diff) | |
download | samba-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/lib/netapi')
-rw-r--r-- | source3/lib/netapi/serverinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/netapi/serverinfo.c b/source3/lib/netapi/serverinfo.c index ffc5f6fd3e..913338fd49 100644 --- a/source3/lib/netapi/serverinfo.c +++ b/source3/lib/netapi/serverinfo.c @@ -191,7 +191,7 @@ static WERROR NetServerSetInfoLocal_1005(struct libnetapi_ctx *ctx, return WERR_NOT_SUPPORTED; } - werr = smbconf_init(ctx, &conf_ctx); + werr = smbconf_init_reg(ctx, &conf_ctx); if (!W_ERROR_IS_OK(werr)) { goto done; } |