From: Fabian Keil <fk@fabiankeil.de>
Date: Thu, 8 Jun 2017 13:11:08 +0000 (+0000)
Subject: Let write_pid_file() terminate if the pid file can't be opened
X-Git-Tag: v_3_0_27~124
X-Git-Url: http://www.privoxy.org/gitweb/%22https:/developer-manual/man-page/static/diff?a=commitdiff_plain;h=40afc653330e1f37e2f5257ddc16cb620c88a3e9;p=privoxy.git

Let write_pid_file() terminate if the pid file can't be opened

Logging the issue at info level is unlikely to help.
---

diff --git a/miscutil.c b/miscutil.c
index ea2c3aae..ad3fd65c 100644
--- a/miscutil.c
+++ b/miscutil.c
@@ -1,4 +1,4 @@
-const char miscutil_rcs[] = "$Id: miscutil.c,v 1.83 2017/05/04 14:34:18 fabiankeil Exp $";
+const char miscutil_rcs[] = "$Id: miscutil.c,v 1.84 2017/05/29 10:05:46 fabiankeil Exp $";
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/miscutil.c,v $
@@ -217,7 +217,8 @@ void *malloc_or_die(size_t buffer_size)
  *
  * Function    :  write_pid_file
  *
- * Description :  Writes a pid file with the pid of the main process
+ * Description :  Writes a pid file with the pid of the main process.
+ *                Exits if the file can't be opened
  *
  * Parameters  :  None
  *
@@ -236,7 +237,7 @@ void write_pid_file(void)
 
    if ((fp = fopen(pidfile, "w")) == NULL)
    {
-      log_error(LOG_LEVEL_INFO, "can't open pidfile '%s': %E", pidfile);
+      log_error(LOG_LEVEL_FATAL, "can't open pidfile '%s': %E", pidfile);
    }
    else
    {