X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=miscutil.c;h=010745fbaf9efb34c7696cb789a166e95aee9874;hp=ea2c3aae18a9e3d9fef7f98200bdb1c2ed4f8876;hb=2380f2ad52748713f50ffb0ab10613204a58accd;hpb=2f180f0a2a126bd3da1b5bf3466ee1ed247cf91e diff --git a/miscutil.c b/miscutil.c index ea2c3aae..010745fb 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.85 2017/06/08 13:11:08 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/miscutil.c,v $ @@ -87,6 +87,7 @@ void *zalloc(size_t size) #ifdef HAVE_CALLOC ret = calloc(1, size); #else +#warning calloc appears to be unavailable. Your platform will become unsupported in the future if ((ret = (void *)malloc(size)) != NULL) { memset(ret, 0, size); @@ -217,7 +218,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 +238,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 {