diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-09-04 07:01:38 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-09-11 18:46:12 +1000 |
commit | eb84c7ac908ad68443496c70775f16ce5d30310a (patch) | |
tree | 7307aff6760781913314696e2c08c623e14fabc3 /libcli/auth | |
parent | e3edd7ca3ad73ff81a6ffddfeae208b930766e86 (diff) | |
download | samba-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')
-rw-r--r-- | libcli/auth/schannel_state_tdb.c | 2 |
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; |