Ignore daemon lock file if the daemon process died.
Do this in a fashion similar to what was done in commit
6ff9523876.
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
@@ -214,6 +214,6 @@ dmon_stop (void)
|
|||||||
if (!dpid)
|
if (!dpid)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (kill ((pid_t)dpid, SIGINT) < 0)
|
if (kill ((pid_t)dpid, SIGINT) < 0 && errno != ESRCH)
|
||||||
EXIT (_("Could not stop calcurse daemon: %s\n"), strerror (errno));
|
EXIT (_("Could not stop calcurse daemon: %s\n"), strerror (errno));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user