X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Ftty-ask-password-agent.c;fp=src%2Ftty-ask-password-agent.c;h=d7e1ebaef69b79cad16083190972ff982f6b743c;hb=ded803353137a5b33d3fc460790c0e9b5cb257c1;hp=4a29abacbbcc65e91b7b12c8394071f4312695ac;hpb=7dcda352a609d063098e238db09c03cdc25c564b;p=elogind.git diff --git a/src/tty-ask-password-agent.c b/src/tty-ask-password-agent.c index 4a29abacb..d7e1ebaef 100644 --- a/src/tty-ask-password-agent.c +++ b/src/tty-ask-password-agent.c @@ -291,6 +291,13 @@ static int parse_password(const char *filename, char **wall) { } } + if (pid > 0 && + kill(pid, 0) < 0 && + errno == ESRCH) { + r = 0; + goto finish; + } + if (arg_action == ACTION_LIST) printf("'%s' (PID %u)\n", message, pid); else if (arg_action == ACTION_WALL) {