From eb84c7ac908ad68443496c70775f16ce5d30310a Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sat, 4 Sep 2010 07:01:38 +1000 Subject: 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(-) (limited to 'libcli/auth/schannel_state_tdb.c') diff --git a/libcli/auth/schannel_state_tdb.c b/libcli/auth/schannel_state_tdb.c index 4b83a33c0d..09bd40757d 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; -- cgit