Home | History | Annotate | Download | only in openssh

Lines Matching full:stdin

534 		 * Redirect stdin.  We close the parent side of the socket
539 perror("dup2 stdin");
555 * Redirect stdin, stdout, and stderr. Stdin and stdout will
561 if (dup2(inout[0], 0) < 0) /* stdin */
562 perror("dup2 stdin");
563 if (dup2(inout[0], 1) < 0) /* stdout (same as stdin) */
699 /* Redirect stdin/stdout/stderr from the pseudo tty. */
701 error("dup2 stdin: %s", strerror(errno));