diff options
author | Tim Potter <tpot@samba.org> | 2002-06-21 03:19:30 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-06-21 03:19:30 +0000 |
commit | 8c5ab0498b5d9e4df858f2283fd26912ab54a60a (patch) | |
tree | bcf831b3d6c9e06f6afc06cef5fb73065f813d0b | |
parent | 7ed56087329bd972c7402f710469d427c3159327 (diff) | |
download | samba-8c5ab0498b5d9e4df858f2283fd26912ab54a60a.tar.gz samba-8c5ab0498b5d9e4df858f2283fd26912ab54a60a.tar.bz2 samba-8c5ab0498b5d9e4df858f2283fd26912ab54a60a.zip |
Fixed incorrect debug.
(This used to be commit a905b5f49db6a12c9a562e1d5e3981dc3525fd27)
-rw-r--r-- | source3/smbd/change_trust_pw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/change_trust_pw.c b/source3/smbd/change_trust_pw.c index f81396dce5..182995d7f4 100644 --- a/source3/smbd/change_trust_pw.c +++ b/source3/smbd/change_trust_pw.c @@ -43,7 +43,7 @@ static NTSTATUS modify_trust_password( char *domain, char *remote_machine, */ if (!secrets_fetch_domain_sid(domain, &domain_sid)) { - DEBUG(0, ("domain_client_validate: unable to fetch domain sid.\n")); + DEBUG(0, ("modify_trust_password: unable to fetch domain sid.\n")); return NT_STATUS_UNSUCCESSFUL; } |