summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2007-12-25 03:41:34 +0100
committerMichael Adam <obnox@samba.org>2007-12-25 03:41:34 +0100
commita107e8421d8571d529be3cf1b7d4e0b8bde2cca9 (patch)
tree8fa61a6c861c00e66bd9890664cff659382ffdf3
parent8445e820f29702c06d9bc71642ed58f63ffcc1c5 (diff)
downloadsamba-a107e8421d8571d529be3cf1b7d4e0b8bde2cca9.tar.gz
samba-a107e8421d8571d529be3cf1b7d4e0b8bde2cca9.tar.bz2
samba-a107e8421d8571d529be3cf1b7d4e0b8bde2cca9.zip
Remove now unneeded talloc ctx parameter from do_JoinConfig().
Michael (This used to be commit be985d8d0ce80d12aa7f0b447b16b14aa0362826)
-rw-r--r--source3/libnet/libnet_join.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/libnet/libnet_join.c b/source3/libnet/libnet_join.c
index 5301674f41..6edcdb8945 100644
--- a/source3/libnet/libnet_join.c
+++ b/source3/libnet/libnet_join.c
@@ -385,8 +385,7 @@ static WERROR do_unjoin_modify_vals_config(struct libnet_UnjoinCtx *r)
}
-static WERROR do_JoinConfig(TALLOC_CTX *mem_ctx,
- struct libnet_JoinCtx *r)
+static WERROR do_JoinConfig(struct libnet_JoinCtx *r)
{
WERROR werr;
@@ -491,7 +490,7 @@ WERROR libnet_Join(TALLOC_CTX *mem_ctx,
}
}
- werr = do_JoinConfig(mem_ctx, r);
+ werr = do_JoinConfig(r);
if (!W_ERROR_IS_OK(werr)) {
return werr;
}