summaryrefslogtreecommitdiff
path: root/source3/libsmb/trust_passwd.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/libsmb/trust_passwd.c')
-rw-r--r--source3/libsmb/trust_passwd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/libsmb/trust_passwd.c b/source3/libsmb/trust_passwd.c
index 1f52ab3611..51ffa1dd95 100644
--- a/source3/libsmb/trust_passwd.c
+++ b/source3/libsmb/trust_passwd.c
@@ -40,7 +40,7 @@ static NTSTATUS just_change_the_password(struct cli_state *cli, TALLOC_CTX *mem_
if (!NT_STATUS_IS_OK(result)) {
DEBUG(0,("just_change_the_password: unable to setup creds (%s)!\n",
- get_nt_error_msg(result)));
+ nt_errstr(result)));
return result;
}
@@ -48,7 +48,7 @@ static NTSTATUS just_change_the_password(struct cli_state *cli, TALLOC_CTX *mem_
if (!NT_STATUS_IS_OK(result)) {
DEBUG(0,("just_change_the_password: unable to change password (%s)!\n",
- get_nt_error_msg(result)));
+ nt_errstr(result)));
}
return result;
}