From b475d56732feb821067512ad1a45c4bbf55a7403 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sat, 4 Sep 2010 07:01:38 +1000 Subject: [PATCH] libcli/auth Failure to find the cached session key for SCHANNEL isn't level 0 This happens all the time, particularly now that we don't keep the db around after a reboot. Don't scare the admins with the level 0. Andrew Bartlett Signed-off-by: Andrew Tridgell --- libcli/auth/schannel_state_tdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcli/auth/schannel_state_tdb.c b/libcli/auth/schannel_state_tdb.c index 4b83a33c0d6..09bd40757de 100644 --- a/libcli/auth/schannel_state_tdb.c +++ b/libcli/auth/schannel_state_tdb.c @@ -154,7 +154,7 @@ NTSTATUS schannel_fetch_session_key_tdb(struct tdb_wrap *tdb_sc, value = tdb_fetch_bystring(tdb_sc->tdb, keystr); if (!value.dptr) { - DEBUG(0,("schannel_fetch_session_key_tdb: Failed to find entry with key %s\n", + DEBUG(10,("schannel_fetch_session_key_tdb: Failed to find entry with key %s\n", keystr )); status = NT_STATUS_OBJECT_NAME_NOT_FOUND; goto done; -- 2.34.1