summaryrefslogtreecommitdiff
path: root/source3/smbd/connection.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2001-07-17 22:04:46 +0000
committerJeremy Allison <jra@samba.org>2001-07-17 22:04:46 +0000
commit54068ae8f390bc008116cbeb459bbd39cd098392 (patch)
treeb21cea6a0bc86453aeae77c076826d7d7eb90509 /source3/smbd/connection.c
parentc2aa4b762fd29b1a34c70bb984bca552d768a9fe (diff)
downloadsamba-54068ae8f390bc008116cbeb459bbd39cd098392.tar.gz
Tidied up calling yield_connection on connection allocation fail.
Restore debug message to level zero. Jeremy. (This used to be commit 0b13f495b31887d526b46a48a812fa3fd418ce8e)
Diffstat (limited to 'source3/smbd/connection.c')
-rw-r--r--source3/smbd/connection.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/smbd/connection.c b/source3/smbd/connection.c
index eeec4a2ca21..07ded5f4a36 100644
--- a/source3/smbd/connection.c
+++ b/source3/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);
}