summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2007-12-25 03:39:31 +0100
committerMichael Adam <obnox@samba.org>2007-12-25 03:39:31 +0100
commitd25661a615a4c22dfe1e5c3a882f3be55cc5631f (patch)
tree07d9f5e5b14205a9e991e385decdd2eae8eac1fe /source3
parentfc8be9d710fba6c05b098fafa7fb383a663853e2 (diff)
downloadsamba-d25661a615a4c22dfe1e5c3a882f3be55cc5631f.tar.gz
samba-d25661a615a4c22dfe1e5c3a882f3be55cc5631f.tar.bz2
samba-d25661a615a4c22dfe1e5c3a882f3be55cc5631f.zip
Remove now unneeded talloc ctx parameter from do_UnjoinConfig().
Michael (This used to be commit 92b8e5ea4ba26d663ea4e6fb65e4225d8259ea60)
Diffstat (limited to 'source3')
-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 b9ed4d56c7..663728a7a9 100644
--- a/source3/libnet/libnet_join.c
+++ b/source3/libnet/libnet_join.c
@@ -410,8 +410,7 @@ static WERROR do_JoinConfig(TALLOC_CTX *mem_ctx,
return werr;
}
-static WERROR do_UnjoinConfig(TALLOC_CTX *mem_ctx,
- struct libnet_UnjoinCtx *r)
+static WERROR do_UnjoinConfig(struct libnet_UnjoinCtx *r)
{
WERROR werr;
@@ -522,7 +521,7 @@ WERROR libnet_Unjoin(TALLOC_CTX *mem_ctx,
}
}
- werr = do_UnjoinConfig(mem_ctx, r);
+ werr = do_UnjoinConfig(r);
if (!W_ERROR_IS_OK(werr)) {
return werr;
}