Home
last modified time | relevance | path

Searched refs:tcattr (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/bsd/openpam/dist/lib/libpam/
H A Dopenpam_ttyconv.c110 struct termios tcattr; in prompt_tty() local
122 if (tcgetattr(ifd, &tcattr) != 0) { in prompt_tty()
126 slflag = tcattr.c_lflag; in prompt_tty()
127 tcattr.c_lflag &= ~ECHO; in prompt_tty()
128 if (tcsetattr(ifd, TCSAFLUSH, &tcattr) != 0) { in prompt_tty()
208 tcattr.c_lflag = slflag; in prompt_tty()
209 if (tcsetattr(ifd, 0, &tcattr) != 0) { in prompt_tty()