summaryrefslogtreecommitdiff
path: root/libcli/auth/schannel_state_tdb.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2010-09-04 07:01:38 +1000
committerAndrew Bartlett <abartlet@samba.org>2010-09-11 18:46:12 +1000
commiteb84c7ac908ad68443496c70775f16ce5d30310a (patch)
tree7307aff6760781913314696e2c08c623e14fabc3 /libcli/auth/schannel_state_tdb.c
parente3edd7ca3ad73ff81a6ffddfeae208b930766e86 (diff)
downloadsamba-eb84c7ac908ad68443496c70775f16ce5d30310a.tar.gz
samba-eb84c7ac908ad68443496c70775f16ce5d30310a.tar.bz2
samba-eb84c7ac908ad68443496c70775f16ce5d30310a.zip
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 <tridge@samba.org>
Diffstat (limited to 'libcli/auth/schannel_state_tdb.c')
-rw-r--r--libcli/auth/schannel_state_tdb.c2
1 files changed, 1 insertions, 1 deletions
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;