aboutsummaryrefslogtreecommitdiffstats
path: root/net-mgmt
diff options
context:
space:
mode:
authorkris <kris@FreeBSD.org>2003-06-27 11:53:16 +0800
committerkris <kris@FreeBSD.org>2003-06-27 11:53:16 +0800
commit7a5dfbebd6b5009903d43546c9e75a0dc1f1b9c2 (patch)
treeef540051ebfcc704369419888a8417565d45475c /net-mgmt
parent9c34ad4402410cafedd6f2b5f3c957e951d407a4 (diff)
downloadfreebsd-ports-gnome-7a5dfbebd6b5009903d43546c9e75a0dc1f1b9c2.tar.gz
freebsd-ports-gnome-7a5dfbebd6b5009903d43546c9e75a0dc1f1b9c2.tar.zst
freebsd-ports-gnome-7a5dfbebd6b5009903d43546c9e75a0dc1f1b9c2.zip
Typo in buffer size declaration leads to an overflow. Bump PORTREVISION.
Obtained from: OpenBSD
Diffstat (limited to 'net-mgmt')
-rw-r--r--net-mgmt/flow-tools/Makefile1
-rw-r--r--net-mgmt/flow-tools/files/patch-src_flow-dscan_c12
2 files changed, 13 insertions, 0 deletions
diff --git a/net-mgmt/flow-tools/Makefile b/net-mgmt/flow-tools/Makefile
index e1a91a1a1345..cfe7b776cada 100644
--- a/net-mgmt/flow-tools/Makefile
+++ b/net-mgmt/flow-tools/Makefile
@@ -7,6 +7,7 @@
PORTNAME= flow-tools
PORTVERSION= 0.66
+PORTREVISION= 1
CATEGORIES= net
MASTER_SITES= ftp://ftp.eng.oar.net/pub/flow-tools/
diff --git a/net-mgmt/flow-tools/files/patch-src_flow-dscan_c b/net-mgmt/flow-tools/files/patch-src_flow-dscan_c
new file mode 100644
index 000000000000..7452e866df56
--- /dev/null
+++ b/net-mgmt/flow-tools/files/patch-src_flow-dscan_c
@@ -0,0 +1,12 @@
+$OpenBSD: patch-src_flow-dscan_c,v 1.1 2003/04/15 21:31:57 avsm Exp $
+--- src/flow-dscan.c.orig Tue Apr 15 19:53:40 2003
++++ src/flow-dscan.c Tue Apr 15 19:54:03 2003
+@@ -105,7 +105,7 @@ int main(int argc, char **argv)
+ struct dscan_dst *ddp, *ddp2;
+ struct dscan_sup *dsp_src, *dsp_dst;
+ u_long hash;
+- char fmt_buf1[64], fmt_buf2[64], fmt_buf3[64], fmt_buf4[54];
++ char fmt_buf1[64], fmt_buf2[64], fmt_buf3[64], fmt_buf4[64];
+ int do_dump, do_load;
+ int filter_www, filter_mcast, filter_input, filter_output;
+ char in_tbl[65536], out_tbl[65536];