=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/telnet/telnet.c,v retrieving revision 1.6 retrieving revision 1.7 diff -c -r1.6 -r1.7 *** src/usr.bin/telnet/telnet.c 1998/07/27 15:29:29 1.6 --- src/usr.bin/telnet/telnet.c 1999/07/23 15:04:48 1.7 *************** *** 1,4 **** ! /* $OpenBSD: telnet.c,v 1.6 1998/07/27 15:29:29 millert Exp $ */ /* $NetBSD: telnet.c,v 1.7 1996/02/28 21:04:15 thorpej Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: telnet.c,v 1.7 1999/07/23 15:04:48 aaron Exp $ */ /* $NetBSD: telnet.c,v 1.7 1996/02/28 21:04:15 thorpej Exp $ */ /* *************** *** 1992,1998 **** } if ((sc == '\n') || (sc == '\r')) bol = 1; ! } else if (sc == escape) { /* * Double escape is a pass through of a single escape character. */ --- 1992,1998 ---- } if ((sc == '\n') || (sc == '\r')) bol = 1; ! } else if (escape != _POSIX_VDISABLE && sc == escape) { /* * Double escape is a pass through of a single escape character. */