The upper while loop has already recycled child process, so the if
statement has never executed as expected, fix it. MFC after: 3 days
This commit is contained in:
parent
028be10749
commit
3d81878b1f
@ -469,9 +469,7 @@ main(int argc, char *argv[])
|
||||
}
|
||||
break;
|
||||
}
|
||||
child_pgrp = getpgid(child_pid);
|
||||
if (tcgetpgrp(STDERR_FILENO) == child_pgrp)
|
||||
tcsetpgrp(STDERR_FILENO, getpgrp());
|
||||
tcsetpgrp(STDERR_FILENO, getpgrp());
|
||||
if (pid == -1)
|
||||
err(1, "waitpid");
|
||||
PAM_END();
|
||||
|
Loading…
Reference in New Issue
Block a user