diff options
author | Jeremy Allison <jra@samba.org> | 2001-07-17 21:32:33 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-07-17 21:32:33 +0000 |
commit | d7da59f54eed69d50490205d6233bf4801c16998 (patch) | |
tree | e24e912c7bbcc0d0feba2a5b8bfb55a651e03e96 /source/smbd/connection.c | |
parent | f591ca9f25c54d3cdd0b76df472411e44c95ea47 (diff) | |
download | samba-d7da59f54eed69d50490205d6233bf4801c16998.tar.gz |
Connection record not existing is not a debug level 0.
Jeremy.
Diffstat (limited to 'source/smbd/connection.c')
-rw-r--r-- | source/smbd/connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/connection.c b/source/smbd/connection.c index a6c37c7abab..eeec4a2ca21 100644 --- a/source/smbd/connection.c +++ b/source/smbd/connection.c @@ -58,7 +58,7 @@ BOOL yield_connection(connection_struct *conn,char *name,int max_connections) kbuf.dsize = sizeof(key); if (tdb_delete(tdb, kbuf) != 0) { - DEBUG(0,("yield_connection: tdb_delete failed with error %s.\n", tdb_errorstr(tdb) )); + DEBUG(3,("yield_connection: tdb_delete failed with error %s.\n", tdb_errorstr(tdb) )); return (False); } |