diff --git a/src/lib/gen/ioqueue.c b/src/lib/gen/ioqueue.c index a7927686..41f68cda 100644 --- a/src/lib/gen/ioqueue.c +++ b/src/lib/gen/ioqueue.c @@ -163,6 +163,9 @@ ioq_gets(struct ioqueue *ioq, s_char *buf, int cc) actual = nbytes; if (actual > cc - 1) actual = cc - 1; + /* telnet terminates lines with "\r\n", get rid of \r */ + if (actual > 0 && buf[actual-1] == '\r') + actual--; buf[actual] = '\0'; /* remove the newline too */ removecc(ioq, nbytes + 1); diff --git a/src/lib/subs/getele.c b/src/lib/subs/getele.c index 20c7e9e8..0d1c4e2d 100644 --- a/src/lib/subs/getele.c +++ b/src/lib/subs/getele.c @@ -75,9 +75,7 @@ getele(char *nation, char *buf /* buf is message text */) uprnf(buf); continue; } - if (buffer[0] == '.' && ((buffer[1] == 0) - || (buffer[1] == '\n') - || (buffer[1] == '\r'))) + if (buffer[0] == '.' && buffer[1] == 0) break; len = strlen(buffer); buffer[len++] = '\n'; @@ -101,8 +99,7 @@ getele(char *nation, char *buf /* buf is message text */) static int tilde_escape(s_char *s, s_char c) { - if (s[0] == '~' && s[1] == c && - ((s[2] == 0) || (s[2] == '\n') || (s[2] == '\r'))) + if (s[0] == '~' && s[1] == c && s[2] == 0) return 1; return 0; }