From: Andrew Bartlett Date: Fri, 3 Sep 2010 21:01:38 +0000 (+1000) Subject: libcli/auth Failure to find the cached session key for SCHANNEL isn't level 0 X-Git-Tag: samba-4.0.0alpha13~257 X-Git-Url: http://git.samba.org/samba.git/?a=commitdiff_plain;h=eb84c7ac908ad68443496c70775f16ce5d30310a;p=samba.git 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 --- 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;