diff options
author | Michael Adam <obnox@samba.org> | 2008-03-21 17:55:31 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-03-21 18:19:24 +0100 |
commit | 6f7cfeddd61f728e2452a7b89f5ee2ff36ca394f (patch) | |
tree | ad5f91f4c72bf9a40fa897204cb36574721d562e /source3/utils | |
parent | 40ea88db5e9e5dd8fd6a924bfcd1afefa538404d (diff) | |
download | samba-6f7cfeddd61f728e2452a7b89f5ee2ff36ca394f.tar.gz samba-6f7cfeddd61f728e2452a7b89f5ee2ff36ca394f.tar.bz2 samba-6f7cfeddd61f728e2452a7b89f5ee2ff36ca394f.zip |
libsmbconf: add a "path" variable to the conf context.
This is passed to the module init routines.
In case of the registry, this is the path of the
basekey in registry, that is to be used, defaulting
to KEY_SMBCONF (HKLM\software\samba\smbconf), when
NULL is given. This is the only case currently used.
In order to support other keys, registry initialization
for smbconf has to be changed to support different keys.
Michael
(This used to be commit 96434d9dc7a66773e313cc128af57493dee245a1)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/net_conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_conf.c b/source3/utils/net_conf.c index cde3ab0a92..d108fe14d2 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_reg(mem_ctx, &conf_ctx); + werr = smbconf_init_reg(mem_ctx, &conf_ctx, NULL); if (!W_ERROR_IS_OK(werr)) { return -1; |