libcli/auth Failure to find the cached session key for SCHANNEL isn't level 0
authorAndrew Bartlett <abartlet@samba.org>
Fri, 3 Sep 2010 21:01:38 +0000 (07:01 +1000)
committerAndrew Bartlett <abartlet@samba.org>
Sat, 11 Sep 2010 08:46:12 +0000 (18:46 +1000)
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 <tridge@samba.org>
libcli/auth/schannel_state_tdb.c

index 4b83a33c0d6b14253307c0d50f42663306c11519..09bd40757de17bb005b679cd1673fd67c9f66508 100644 (file)
@@ -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;