aboutsummaryrefslogtreecommitdiff
path: root/src/pies.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pies.c')
-rw-r--r--src/pies.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/pies.c b/src/pies.c
index 52abc80..cc2ac53 100644
--- a/src/pies.c
+++ b/src/pies.c
@@ -1510,9 +1510,10 @@ pidfile_read (int must_exist)
fclose (fp);
if (n && kill (n, 0))
{
- logmsg (LOG_ERR,
- _("cannot signal master process %lu: %s"),
- (unsigned long) n, strerror (errno));
+ if (errno != ESRCH)
+ logmsg (LOG_ERR,
+ _("cannot signal master process %lu: %s"),
+ (unsigned long) n, strerror (errno));
if (errno == EPERM)
return n; /* be on the safe side */
return -1;
@@ -1824,7 +1825,9 @@ main (int argc, char **argv)
textdomain (PACKAGE);
#endif
mf_proctitle_init (argc, argv, environ);
-
+
+ set_quoting_style (NULL, shell_quoting_style);
+
/* Set default logging */
log_to_stderr = !stderr_closed_p ();
log_setup (log_to_stderr);

Return to:

Send suggestions and report system problems to the System administrator.