diff options
Diffstat (limited to 'examples/tty_conv.c')
-rw-r--r-- | examples/tty_conv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tty_conv.c b/examples/tty_conv.c index 9a0e1ad9..59bbb3b3 100644 --- a/examples/tty_conv.c +++ b/examples/tty_conv.c @@ -68,7 +68,7 @@ static char *readline(void) int i; flockfile(stdin); - for (i = 0; i < PAM_MAX_RESP_SIZE; i++) + for (i = 0; i < PAM_MAX_RESP_SIZE - 1; i++) { int ch = getchar_unlocked(); if (ch == '\n' || ch == '\r' ||ch == EOF) |