diff options
author | Michael Adam <obnox@samba.org> | 2007-12-26 01:01:14 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2007-12-26 01:01:14 +0100 |
commit | afca308742795a34e58f7a049c9a8d86cdff80c1 (patch) | |
tree | aa98c01b4ae713d14de5528835f8e076839477a9 /source3/utils | |
parent | 18ea20e19b59d3151ca59f0576211f855931f839 (diff) | |
download | samba-afca308742795a34e58f7a049c9a8d86cdff80c1.tar.gz samba-afca308742795a34e58f7a049c9a8d86cdff80c1.tar.bz2 samba-afca308742795a34e58f7a049c9a8d86cdff80c1.zip |
Rename libnet_smbconf_open_basepath() to libnet_smbconf_reg_open_basepath().
Michael
(This used to be commit 4c0e7270c42788e7f77c402032ae74cf0f8a7106)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/net_conf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/utils/net_conf.c b/source3/utils/net_conf.c index 348e91a15f..8b89f2fa6f 100644 --- a/source3/utils/net_conf.c +++ b/source3/utils/net_conf.c @@ -345,7 +345,7 @@ int net_conf_list(int argc, const char **argv) goto done; } - werr = libnet_smbconf_open_basepath(ctx, REG_KEY_READ, &base_key); + werr = libnet_smbconf_reg_open_basepath(ctx, REG_KEY_READ, &base_key); if (!W_ERROR_IS_OK(werr)) { goto done; } @@ -503,7 +503,8 @@ int net_conf_listshares(int argc, const char **argv) goto done; } - werr = libnet_smbconf_open_basepath(ctx, SEC_RIGHTS_ENUM_SUBKEYS, &key); + werr = libnet_smbconf_reg_open_basepath(ctx, SEC_RIGHTS_ENUM_SUBKEYS, + &key); if (!W_ERROR_IS_OK(werr)) { goto done; } |