mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
Remove now unneeded talloc ctx parameter from do_unjoin_modify_vals_config().
Michael
This commit is contained in:
parent
4efac39c36
commit
4f7375a110
@ -370,8 +370,7 @@ static WERROR do_join_modify_vals_config(TALLOC_CTX *mem_ctx,
|
||||
return werr;
|
||||
}
|
||||
|
||||
static WERROR do_unjoin_modify_vals_config(TALLOC_CTX *mem_ctx,
|
||||
struct libnet_UnjoinCtx *r)
|
||||
static WERROR do_unjoin_modify_vals_config(struct libnet_UnjoinCtx *r)
|
||||
{
|
||||
WERROR werr = WERR_OK;
|
||||
|
||||
@ -424,7 +423,7 @@ static WERROR do_UnjoinConfig(TALLOC_CTX *mem_ctx,
|
||||
return WERR_OK;
|
||||
}
|
||||
|
||||
werr = do_unjoin_modify_vals_config(mem_ctx, r);
|
||||
werr = do_unjoin_modify_vals_config(r);
|
||||
if (!W_ERROR_IS_OK(werr)) {
|
||||
return werr;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user