summaryrefslogtreecommitdiff
path: root/source3/libsmb
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2006-01-25 23:00:07 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:06:15 -0500
commit60bcd1bd77557c86a7b384add8ff9b6b48a6e32d (patch)
tree05a81037c0fdf2f99c01375f348833c6e90f2e05 /source3/libsmb
parent1a423304cc1c17a28065a95e3bac1aa9403bd630 (diff)
downloadsamba-60bcd1bd77557c86a7b384add8ff9b6b48a6e32d.tar.gz
samba-60bcd1bd77557c86a7b384add8ff9b6b48a6e32d.tar.bz2
samba-60bcd1bd77557c86a7b384add8ff9b6b48a6e32d.zip
r13147: Raise creds_server_step fail log messages to debug level 2.
These can happen in normal operation (I think - not 100% sure) and don't want to alarm admins. Jerry please add this to 3.0.21b. Jeremy. (This used to be commit 47178b1b5ad06905f345a0f6b6267701d8aefddb)
Diffstat (limited to 'source3/libsmb')
-rw-r--r--source3/libsmb/credentials.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/credentials.c b/source3/libsmb/credentials.c
index edb242df7e..ad06cd9015 100644
--- a/source3/libsmb/credentials.c
+++ b/source3/libsmb/credentials.c
@@ -156,7 +156,7 @@ BOOL creds_server_check(const struct dcinfo *dc, const DOM_CHAL *rcv_cli_chal_in
if (memcmp(dc->clnt_chal.data, rcv_cli_chal_in->data, 8)) {
DEBUG(5,("creds_server_check: challenge : %s\n", credstr(rcv_cli_chal_in->data)));
DEBUG(5,("calculated: %s\n", credstr(dc->clnt_chal.data)));
- DEBUG(0,("creds_server_check: credentials check failed.\n"));
+ DEBUG(2,("creds_server_check: credentials check failed.\n"));
return False;
}
DEBUG(10,("creds_server_check: credentials check OK.\n"));