Files
pkgsrc-ng/net/nocol/patches/patch-ak
2013-09-26 17:14:40 +02:00

18 lines
487 B
Plaintext

$NetBSD: patch-ak,v 1.2 2012/09/09 19:49:45 dholland Exp $
Don't use nonexistent/nonstandard curses interfaces.
--- 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);
}