Think I have it....

This commit is contained in:
Andrew Pamment 2016-04-22 20:06:13 +10:00
parent 1c5920c0b0
commit 5494341932

View File

@ -810,7 +810,7 @@ void read_message(int socket, struct user_record *user, struct msg_headers *msgh
chars = 0; chars = 0;
s_putstring(socket, "\r\n"); s_putstring(socket, "\r\n");
lines++; lines++;
if (lines == 17) { if (lines >= 17) {
s_putstring(socket, "Press a key to continue..."); s_putstring(socket, "Press a key to continue...");
s_getc(socket); s_getc(socket);
lines = 0; lines = 0;
@ -856,7 +856,7 @@ void read_message(int socket, struct user_record *user, struct msg_headers *msgh
j = 1; j = 1;
} }
for (i=0;i<j;i++) { for (i=0;i<j;i++) {
if (lines + 1 <= 17) { if (lines + 1 < 17) {
s_putstring(socket, "\e[B"); s_putstring(socket, "\e[B");
lines++; lines++;
} else { } else {