From 40afc653330e1f37e2f5257ddc16cb620c88a3e9 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Thu, 8 Jun 2017 13:11:08 +0000 Subject: [PATCH] Let write_pid_file() terminate if the pid file can't be opened Logging the issue at info level is unlikely to help. --- miscutil.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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 { -- 2.39.2