From c21bcda651c8e6e72b6b60d29aca7b8b6927f12a Mon Sep 17 00:00:00 2001 From: stas Date: Tue, 10 Jul 2007 14:17:21 +0000 Subject: - Add patch to fix an excess comma problem when exporting flows to SQL or ASCII format. See the following url for further info: http://www.mail-archive.com/flow-tools@list.splintered.net/msg01034.html - Bump portrevision. Submitted by: Vladimir Zorin --- net-mgmt/flow-tools/Makefile | 2 +- net-mgmt/flow-tools/files/patch-src_flow-export.c | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 net-mgmt/flow-tools/files/patch-src_flow-export.c (limited to 'net-mgmt') diff --git a/net-mgmt/flow-tools/Makefile b/net-mgmt/flow-tools/Makefile index 20313fe66e27..89719fcd7a59 100644 --- a/net-mgmt/flow-tools/Makefile +++ b/net-mgmt/flow-tools/Makefile @@ -7,7 +7,7 @@ PORTNAME= flow-tools PORTVERSION= 0.68 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net-mgmt MASTER_SITES= ftp://ftp.eng.oar.net/pub/flow-tools/ diff --git a/net-mgmt/flow-tools/files/patch-src_flow-export.c b/net-mgmt/flow-tools/files/patch-src_flow-export.c new file mode 100644 index 000000000000..bd53fcff6114 --- /dev/null +++ b/net-mgmt/flow-tools/files/patch-src_flow-export.c @@ -0,0 +1,11 @@ +--- src/flow-export.c.orig Tue Jul 10 17:59:28 2007 ++++ src/flow-export.c Tue Jul 10 18:00:22 2007 +@@ -961,7 +961,7 @@ + + int fmt_xfields_type(char *buf, u_int64 xfield) + { +- int comma; ++ int comma = 0; + + buf[0] = 0; + -- cgit