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:
parent
8445e820f2
commit
a107e8421d
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user