1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

Remove now unneeded talloc ctx parameter from do_JoinConfig().

Michael
(This used to be commit be985d8d0c)
This commit is contained in:
Michael Adam 2007-12-25 03:41:34 +01:00
parent 8445e820f2
commit a107e8421d

View File

@ -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;
}