diff options
Diffstat (limited to 'lib/libc/gen/readpassphrase.c')
-rw-r--r-- | lib/libc/gen/readpassphrase.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/gen/readpassphrase.c b/lib/libc/gen/readpassphrase.c index 7b01f1c5b93..d1deba7630d 100644 --- a/lib/libc/gen/readpassphrase.c +++ b/lib/libc/gen/readpassphrase.c @@ -26,7 +26,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: readpassphrase.c,v 1.3 2001/06/16 22:53:10 millert Exp $"; +static char rcsid[] = "$OpenBSD: readpassphrase.c,v 1.4 2001/06/18 17:41:39 millert Exp $"; #endif /* LIBC_SCCS and not lint */ #include <ctype.h> @@ -48,7 +48,8 @@ readpassphrase(prompt, buf, bufsiz, flags) int flags; { struct termios term; - char ch, status, *p, *end; + char ch, *p, *end; + u_char status; int echo, input, output; sigset_t oset, nset; |