starter: Ignore an existing PID file if it references ourself

This commit is contained in:
Martin Willi 2018-03-12 07:26:06 +01:00 committed by Tobias Brunner
parent 83187f3883
commit 3b29590b70

View File

@ -276,7 +276,7 @@ static bool check_pid(char *pid_file)
pid = atoi(buf);
}
fclose(pidfile);
if (pid && kill(pid, 0) == 0)
if (pid && pid != getpid() && kill(pid, 0) == 0)
{ /* such a process is running */
return TRUE;
}