1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

s3-net: print error when "net rpc changetrustpw" has failed.

Guenther
This commit is contained in:
Günther Deschner 2009-10-05 13:01:53 +02:00
parent 84de81b478
commit 55b12d032c

View File

@ -239,8 +239,16 @@ static NTSTATUS rpc_changetrustpw_internals(struct net_context *c,
int argc,
const char **argv)
{
NTSTATUS status;
return trust_pw_find_change_and_store_it(pipe_hnd, mem_ctx, c->opt_target_workgroup);
status = trust_pw_find_change_and_store_it(pipe_hnd, mem_ctx, c->opt_target_workgroup);
if (!NT_STATUS_IS_OK(status)) {
d_fprintf(stderr, _("Failed to change machine account password: %s\n"),
nt_errstr(status));
return status;
}
return NT_STATUS_OK;
}
/**