diff --git a/server.c b/server.c index a47e4c8f..e9631845 100644 --- a/server.c +++ b/server.c @@ -78,6 +78,7 @@ int server_pid() int pid = atoi(buf); if (pid > 0 && kill(pid, 0) != -1) return pid; + INFOF("Unlinking stale pidfile %s", filename); unlink(filename); } return 0;