From: Adam Dickmeiss Date: Thu, 25 Oct 2007 07:43:13 +0000 (+0000) Subject: Do not write zebrasrv.pid in daemon mode X-Git-Tag: ZEBRA.2.0.20~105 X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=commitdiff_plain;h=2350e972879eb1c4de0d2d800edacb3567b7caf4 Do not write zebrasrv.pid in daemon mode --- 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);