mirror of
https://github.com/samba-team/samba.git
synced 2025-02-25 17:57:42 +03:00
net3: Save a few lines with any_nt_status_not_ok()
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
parent
d2a08f5d67
commit
4a99fe42e6
@ -111,18 +111,12 @@ NTSTATUS net_get_remote_domain_sid(struct cli_state *cli, TALLOC_CTX *mem_ctx,
|
||||
LSA_POLICY_INFO_ACCOUNT_DOMAIN,
|
||||
&info,
|
||||
&result);
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
if (any_nt_status_not_ok(status, result, &status)) {
|
||||
d_fprintf(stderr, "lsaquery %s: %s\n",
|
||||
_("failed"),
|
||||
nt_errstr(status));
|
||||
return status;
|
||||
}
|
||||
if (!NT_STATUS_IS_OK(result)) {
|
||||
d_fprintf(stderr, "lsaquery %s: %s\n",
|
||||
_("failed"),
|
||||
nt_errstr(result));
|
||||
return result;
|
||||
}
|
||||
|
||||
*domain_name = info->account_domain.name.string;
|
||||
*domain_sid = info->account_domain.sid;
|
||||
|
Loading…
x
Reference in New Issue
Block a user