From 416fa081ab9d0a5338a11924d7b85c8e159a5109 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 8 Aug 2008 22:34:59 +1000 Subject: ensure we exit with non-zero status on EOF on socket, so the parent can trigger a brlock db cleanup (This used to be commit bbd49f9e1c4b50c4a596fb991f3306e1e90c0177) --- source3/smbd/conn.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'source3/smbd/conn.c') diff --git a/source3/smbd/conn.c b/source3/smbd/conn.c index 1a67ac9b32..b9433bb965 100644 --- a/source3/smbd/conn.c +++ b/source3/smbd/conn.c @@ -161,16 +161,19 @@ find_again: /**************************************************************************** Close all conn structures. +return true if any were closed ****************************************************************************/ - -void conn_close_all(void) +bool conn_close_all(void) { connection_struct *conn, *next; + bool ret = false; for (conn=Connections;conn;conn=next) { next=conn->next; set_current_service(conn, 0, True); close_cnum(conn, conn->vuid); + ret = true; } + return ret; } /**************************************************************************** -- cgit