mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 17:29:23 -04:00
Natively SSLtelnet works with SSLeay, only. PR: ports/12973 Submitted by: Issei Suzuki <issei@jp.FreeBSD.ORG> (maintainer)
14 lines
359 B
Text
14 lines
359 B
Text
--- telnet/sys_bsd.c.orig Sat Aug 2 14:18:09 1997
|
|
+++ telnet/sys_bsd.c Fri Oct 16 20:43:32 1998
|
|
@@ -580,10 +580,7 @@
|
|
else
|
|
lmode &= ~LPASS8;
|
|
#else
|
|
- if (f & MODE_INBIN)
|
|
- tmp_tc.c_iflag &= ~ISTRIP;
|
|
- else
|
|
- tmp_tc.c_iflag |= ISTRIP;
|
|
+ tmp_tc.c_iflag &= ~ISTRIP;
|
|
if (f & MODE_OUTBIN) {
|
|
tmp_tc.c_cflag &= ~(CSIZE|PARENB);
|
|
tmp_tc.c_cflag |= CS8;
|