Searched refs:chout (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/lib/libpam/modules/pam_exec/
H A Dpam_exec.c174 int chin[2], chout[2], cherr[2], pd; local
183 chin[0] = chin[1] = chout[0] = chout[1] = cherr[0] = cherr[1] = -1;
278 if (pipe(chout) != 0) {
282 if (fcntl(chout[0], F_SETFL, O_NONBLOCK) != 0) {
287 if ((chout[1] = open("/dev/null", O_RDWR)) < 0) {
311 (chout[0] >= 0 && close(chout[0]) != 0) ||
317 } else if (dup2(chout[1], STDOUT_FILENO) != STDOUT_FILENO ||
336 if (chout[
[all...]

Completed in 63 milliseconds