pkgsrc/net/nocol/patches/patch-ak
agc 5f89a1bec0 Remove diagnostic ttytype from debug messages - native curses doesn't
have the ttytype throw-back, and it's not exactly useful these days.
2002-06-28 08:42:34 +00:00

15 lines
428 B
Text

$NetBSD: patch-ak,v 1.1 2002/06/28 08:42:35 agc Exp $
--- netconsole/setup_display.c 2002/06/28 08:31:30 1.1
+++ netconsole/setup_display.c 2002/06/28 08:31:50
@@ -48,8 +48,8 @@
{
endwin ();
fprintf (stderr,
- "%s: Terminal ('%s') too small (need %d cols, have %d)\n\n",
- prognm, ttytype, MNCOLS, COLS);
+ "%s: Terminal too small (need %d cols, have %d)\n\n",
+ prognm, MNCOLS, COLS);
exit (1);
}