diff options
author | Jeremy Allison <jra@samba.org> | 2001-07-17 22:04:46 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-07-17 22:04:46 +0000 |
commit | 0b13f495b31887d526b46a48a812fa3fd418ce8e (patch) | |
tree | 37dd377989c10e825ab6f0dca311199be445b4ff /source/smbd/connection.c | |
parent | d7da59f54eed69d50490205d6233bf4801c16998 (diff) | |
download | samba-0b13f495b31887d526b46a48a812fa3fd418ce8e.tar.gz samba-0b13f495b31887d526b46a48a812fa3fd418ce8e.tar.xz samba-0b13f495b31887d526b46a48a812fa3fd418ce8e.zip |
Tidied up calling yield_connection on connection allocation fail.
Restore debug message to level zero.
Jeremy.
Diffstat (limited to 'source/smbd/connection.c')
-rw-r--r-- | source/smbd/connection.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/smbd/connection.c b/source/smbd/connection.c index eeec4a2ca21..07ded5f4a36 100644 --- a/source/smbd/connection.c +++ b/source/smbd/connection.c @@ -58,7 +58,8 @@ BOOL yield_connection(connection_struct *conn,char *name,int max_connections) kbuf.dsize = sizeof(key); if (tdb_delete(tdb, kbuf) != 0) { - DEBUG(3,("yield_connection: tdb_delete failed with error %s.\n", tdb_errorstr(tdb) )); + DEBUG(0,("yield_connection: tdb_delete for name %s failed with error %s.\n", + name, tdb_errorstr(tdb) )); return (False); } |