From 2350e972879eb1c4de0d2d800edacb3567b7caf4 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 25 Oct 2007 07:43:13 +0000 Subject: [PATCH] Do not write zebrasrv.pid in daemon mode --- index/zebrasrv.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index/zebrasrv.c b/index/zebrasrv.c index f35c051..9629d41 100644 --- a/index/zebrasrv.c +++ b/index/zebrasrv.c @@ -1,4 +1,4 @@ -/* $Id: zebrasrv.c,v 1.19 2007-08-27 17:22:22 adam Exp $ +/* $Id: zebrasrv.c,v 1.20 2007-10-25 07:43:13 adam Exp $ Copyright (C) 1995-2007 Index Data ApS @@ -737,7 +737,7 @@ static void bend_start (struct statserv_options_block *sob) #ifdef WIN32 #else - if (!sob->inetd) + if (!sob->inetd && !sob->background) { char pidfname[4096]; struct flock area; @@ -784,7 +784,7 @@ static void bend_stop(struct statserv_options_block *sob) #ifdef WIN32 #else - if (!sob->inetd && sob->handle) + if (!sob->inetd && !sob->background && sob->handle) { char pidfname[4096]; zebra_pidfname(sob->handle, pidfname); -- 1.7.10.4