summaryrefslogtreecommitdiff
path: root/source3/rpc_client/cli_trust.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-09-18 02:49:35 +0000
committerTim Potter <tpot@samba.org>2001-09-18 02:49:35 +0000
commit15a6649c01195f2b385fbfd7e54279c1acc3a878 (patch)
treea52eb35ea4ddd147db807039883bbf1f0240167a /source3/rpc_client/cli_trust.c
parent006c8342de3c962f38135aab738e51f0871d440d (diff)
downloadsamba-15a6649c01195f2b385fbfd7e54279c1acc3a878.tar.gz
samba-15a6649c01195f2b385fbfd7e54279c1acc3a878.tar.bz2
samba-15a6649c01195f2b385fbfd7e54279c1acc3a878.zip
Converted cli_net_auth2() and cli_nt_setup_creds() to return NTSTATUS.
(This used to be commit e0bdcbc5994345fdc76f7590dba7bce5f0127d58)
Diffstat (limited to 'source3/rpc_client/cli_trust.c')
-rw-r--r--source3/rpc_client/cli_trust.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/source3/rpc_client/cli_trust.c b/source3/rpc_client/cli_trust.c
index eed6ba7b2b..d7faf4975f 100644
--- a/source3/rpc_client/cli_trust.c
+++ b/source3/rpc_client/cli_trust.c
@@ -35,6 +35,7 @@ static BOOL modify_trust_password( char *domain, char *remote_machine,
unsigned char new_trust_passwd_hash[16])
{
struct cli_state cli;
+ NTSTATUS result;
ZERO_STRUCT(cli);
if(cli_initialise(&cli) == NULL) {
@@ -131,9 +132,11 @@ machine %s. Error was : %s.\n", remote_machine, cli_errstr(&cli)));
return False;
}
- if(cli_nt_setup_creds(&cli, orig_trust_passwd_hash) == False) {
+ result = cli_nt_setup_creds(&cli, orig_trust_passwd_hash);
+
+ if (!NT_STATUS_IS_OK(result)) {
DEBUG(0,("modify_trust_password: unable to setup the PDC credentials to machine \
-%s. Error was : %s.\n", remote_machine, cli_errstr(&cli)));
+%s. Error was : %s.\n", remote_machine, get_nt_error_msg(result)));
cli_nt_session_close(&cli);
cli_ulogoff(&cli);
cli_shutdown(&cli);