summaryrefslogtreecommitdiffstats
path: root/cpukit/telnetd/pty.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/telnetd/pty.c')
-rw-r--r--cpukit/telnetd/pty.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/cpukit/telnetd/pty.c b/cpukit/telnetd/pty.c
index 9d3e48f043..30bfe98951 100644
--- a/cpukit/telnetd/pty.c
+++ b/cpukit/telnetd/pty.c
@@ -306,10 +306,9 @@ static int read_pty(int minor)
} else {
result=value;
if ( 0
-#if 0 /* pass CRLF through - they should use termios to handle it */
- || ((value=='\n') && (pty->last_cr))
-#endif
- /* but map telnet CRNUL to CR down here */
+ /* map CRLF to CR for symmetry */
+ || ((value=='\n') && pty->last_cr)
+ /* map telnet CRNUL to CR down here */
|| ((value==0) && pty->last_cr)
) result=-1;
pty->last_cr=(value=='\r');