bin/1942 curses problem in systat

truncate if too long for field.
2.2 candidate.
This commit is contained in:
Poul-Henning Kamp 1996-11-02 15:15:40 +00:00
parent 59a95186d2
commit 00cb92bf59
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=19330

View File

@ -36,7 +36,7 @@
static char sccsid[] = "@(#)netstat.c 8.1 (Berkeley) 6/6/93";
*/
static const char rcsid[] =
"$Id$";
"$Id: netstat.c,v 1.5 1996/10/28 19:08:13 wollman Exp $";
#endif /* not lint */
/*
@ -384,7 +384,7 @@ inetprint(in, port, proto)
cp = index(line, '\0');
while (cp - line < 22)
*cp++ = ' ';
*cp = '\0';
line[22] = '\0';
waddstr(wnd, line);
}