[641] in Kerberos-V5-bugs
bug in /src/appl/telnet/telnet/sys_bsd.c
daemon@ATHENA.MIT.EDU (Paul Pomes)
Mon Aug 15 18:16:17 1994
Date: Mon, 15 Aug 1994 17:16:07 -0500
From: Paul Pomes <P-Pomes@uiuc.edu>
To: krb5-bugs@MIT.EDU
platform is a RS6000/250 running AIX 3.2.5
As defined in /usr/include/sys/termio.h, termio.c_cc[NCC] is limited to
8 characters. However termio.h also includes /usr/include/termios.h
which has #define VLNEXT 14 . If VLNEXT is exclusively a termios value,
then the #ifdef VLNEXT should become something like
#if defined(VLNEXT) && !defined(SYSV_TERMIO)
/pbp