mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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
02c788a24e
commit
a964714f51
1 changed files with 1 additions and 3 deletions
|
|
@ -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 a new issue