summaryrefslogtreecommitdiff
path: root/source3/libnet
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-03-20 23:41:39 +0100
committerMichael Adam <obnox@samba.org>2008-03-21 02:25:56 +0100
commitadf5bf554cd6bfdc5c6e7b1ed54f7f9329b15c50 (patch)
tree1e021aec112f440d5f86383008a029604f3ca8f4 /source3/libnet
parentac7c582ec0a357c5b0e53bf38dd09a34eaab64eb (diff)
downloadsamba-adf5bf554cd6bfdc5c6e7b1ed54f7f9329b15c50.tar.gz
samba-adf5bf554cd6bfdc5c6e7b1ed54f7f9329b15c50.tar.bz2
samba-adf5bf554cd6bfdc5c6e7b1ed54f7f9329b15c50.zip
libsmbconf: rename smbconf_open() to smbconf_init().
That's more appropriate. Michael (This used to be commit d7bd9bb8aa2003ec0a9860df26857f67255febe2)
Diffstat (limited to 'source3/libnet')
-rw-r--r--source3/libnet/libnet_join.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/libnet/libnet_join.c b/source3/libnet/libnet_join.c
index 2e634a16f1..7e3e9cc93a 100644
--- a/source3/libnet/libnet_join.c
+++ b/source3/libnet/libnet_join.c
@@ -1201,7 +1201,7 @@ static WERROR do_join_modify_vals_config(struct libnet_JoinCtx *r)
WERROR werr;
struct smbconf_ctx *ctx;
- werr = smbconf_open(r, &ctx);
+ werr = smbconf_init(r, &ctx);
if (!W_ERROR_IS_OK(werr)) {
goto done;
}
@@ -1245,7 +1245,7 @@ static WERROR do_unjoin_modify_vals_config(struct libnet_UnjoinCtx *r)
WERROR werr = WERR_OK;
struct smbconf_ctx *ctx;
- werr = smbconf_open(r, &ctx);
+ werr = smbconf_init(r, &ctx);
if (!W_ERROR_IS_OK(werr)) {
goto done;
}