aboutsummaryrefslogtreecommitdiff
path: root/examples/tty_conv.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/tty_conv.c')
-rw-r--r--examples/tty_conv.c2
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)