summaryrefslogtreecommitdiff
path: root/source3/libnet/libnet_join.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2007-12-25 03:34:04 +0100
committerMichael Adam <obnox@samba.org>2007-12-25 03:34:04 +0100
commit44631bfd4d418cbf1ca4309057e6161cdce50bd4 (patch)
tree5548e72debfaf3b4b1379a3e22eb6a02b01d83ce /source3/libnet/libnet_join.c
parent726f32b6728a7d2b56ccb2f04827d0e5150ea848 (diff)
downloadsamba-44631bfd4d418cbf1ca4309057e6161cdce50bd4.tar.gz
samba-44631bfd4d418cbf1ca4309057e6161cdce50bd4.tar.bz2
samba-44631bfd4d418cbf1ca4309057e6161cdce50bd4.zip
Remove talloc context parameter from libnet_smbconf_delparm().
Make use of talloc stackframe internally. This removes talloc contxt from net_conf_delparm. Michael (This used to be commit 16f137393881edc78c9322f038ba38e53e3ee07d)
Diffstat (limited to 'source3/libnet/libnet_join.c')
-rw-r--r--source3/libnet/libnet_join.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libnet/libnet_join.c b/source3/libnet/libnet_join.c
index 4f5c09cf47..e8d114d747 100644
--- a/source3/libnet/libnet_join.c
+++ b/source3/libnet/libnet_join.c
@@ -381,7 +381,7 @@ static WERROR do_unjoin_modify_vals_config(TALLOC_CTX *mem_ctx,
W_ERROR_NOT_OK_RETURN(werr);
}
- werr = libnet_smbconf_delparm(mem_ctx, "GLOBAL", "realm");
+ werr = libnet_smbconf_delparm("GLOBAL", "realm");
return werr;
}