summaryrefslogtreecommitdiff
path: root/comms/snooper
diff options
context:
space:
mode:
authorrecht <recht>2004-06-29 23:42:46 +0000
committerrecht <recht>2004-06-29 23:42:46 +0000
commit63326ff56bd9ac3bf96c683184fd0a585751bfb0 (patch)
treeddb8c000417e56f0331f23bc2e4965b1823bfb6e /comms/snooper
parent5997c04d6abd8257bd4336b9d254dcb4b0786929 (diff)
downloadpkgsrc-63326ff56bd9ac3bf96c683184fd0a585751bfb0.tar.gz
add patch missed in the previous commit
Diffstat (limited to 'comms/snooper')
-rw-r--r--comms/snooper/patches/patch-aa13
1 files changed, 13 insertions, 0 deletions
diff --git a/comms/snooper/patches/patch-aa b/comms/snooper/patches/patch-aa
new file mode 100644
index 00000000000..0ed6f1abc85
--- /dev/null
+++ b/comms/snooper/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1 2004/06/29 23:42:46 recht Exp $
+
+--- ../src/scrn.c.orig 1998-08-12 16:32:02.000000000 +0200
++++ ../src/scrn.c 2004-06-30 01:38:04.000000000 +0200
+@@ -33,7 +33,7 @@
+ #ifdef TIOCGWINSZ
+ struct winsize win;
+
+- if (ioctl(STDERR_FILENO, TIOCGWINSZ, &win) == -1) {
++ if (ioctl(STDERR_FILENO, TIOCGWINSZ, &win) != -1) {
+ rows = win.ws_row;
+ cols = win.ws_col;
+ }