diff options
Diffstat (limited to 'src/appl/telnet/telnetd/termio-tn.c')
-rw-r--r-- | src/appl/telnet/telnetd/termio-tn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/appl/telnet/telnetd/termio-tn.c b/src/appl/telnet/telnetd/termio-tn.c index 7447f1eec3..8f27d59d3b 100644 --- a/src/appl/telnet/telnetd/termio-tn.c +++ b/src/appl/telnet/telnetd/termio-tn.c @@ -25,7 +25,7 @@ int readstream_termio(cmd, ibuf, vstop, vstart, ixon) *vstop = tp->c_cc[VSTOP]; *vstart = tp->c_cc[VSTART]; #endif - *ixon = tp->c_iflag & IXON; + *ixon = tp->c_iflag & IXON; return 0; } return -1; |