diff options
author | wiz <wiz@pkgsrc.org> | 2006-01-08 11:46:42 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2006-01-08 11:46:42 +0000 |
commit | 190bd992d1afacc4e4c70d88a85bfa9ca890247a (patch) | |
tree | 076daa748547f3b00cedbd3c7f9be24da4781579 /net/hlfl/patches | |
parent | 0e8a4bbeaab43ad232a7329a939cec8fb3e27112 (diff) | |
download | pkgsrc-190bd992d1afacc4e4c70d88a85bfa9ca890247a.tar.gz |
Add some bug fix patches from hlfl's CVS, reported by ISIHARA
Takanori in PR 27105. Bump PKGREVISION.
Diffstat (limited to 'net/hlfl/patches')
-rw-r--r-- | net/hlfl/patches/patch-aa | 15 | ||||
-rw-r--r-- | net/hlfl/patches/patch-ab | 31 | ||||
-rw-r--r-- | net/hlfl/patches/patch-ac | 23 | ||||
-rw-r--r-- | net/hlfl/patches/patch-ad | 13 |
4 files changed, 82 insertions, 0 deletions
diff --git a/net/hlfl/patches/patch-aa b/net/hlfl/patches/patch-aa new file mode 100644 index 00000000000..0e6c02d8900 --- /dev/null +++ b/net/hlfl/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.1 2006/01/08 11:46:43 wiz Exp $ + +--- NEWS.orig 2002-02-20 23:14:44.000000000 +0900 ++++ NEWS +@@ -1,3 +1,10 @@ ++Oct 6, 2003 -- Version 0.60.1 ++- ipchains now ACCEPT packets by default ++- malloc() are now checked ++- cisco accepts comments, netmask ++- spaces and tabs are better managed ++- as always, bugfixes here and there ++ + Feb 20, 2002 -- Version 0.60.0 + - dev system use autoconf 2.52 / automake 1.5 + - verbose operators diff --git a/net/hlfl/patches/patch-ab b/net/hlfl/patches/patch-ab new file mode 100644 index 00000000000..e1cc567fd73 --- /dev/null +++ b/net/hlfl/patches/patch-ab @@ -0,0 +1,31 @@ +$NetBSD: patch-ab,v 1.1 2006/01/08 11:46:43 wiz Exp $ + +--- src/hlfl.c.orig 2004-09-30 01:11:05.000000000 +0900 ++++ src/hlfl.c +@@ -58,7 +58,7 @@ struct definition *definitions = NULL; + + #ifdef HAVE_GETOPT + /* option string for getopt() or getopt_long() */ +-char *optstr = "hvV:c:t:o:"; ++char *optstr = "c:t:o:hvV"; + #ifdef HAVE_GETOPT_LONG + /* array of long option structs for getopt_long() */ + struct option long_options[] = { +@@ -66,7 +66,7 @@ struct option long_options[] = { + {"output", 1, 0, 'o'}, + {"type", 1, 0, 't'}, + {"version", 0, 0, 'V'}, +- {"verbose", 1, 0, 'v'}, ++ {"verbose", 0, 0, 'v'}, + {"check", 1, 0, 'c'}, + {0, 0, 0, 0} + }; +@@ -1173,7 +1173,7 @@ char **argv; + break; + } + case 'v':{ +- verbose_level = atoi(optarg); ++ verbose_level = 1; + break; + } + case 'V':{ diff --git a/net/hlfl/patches/patch-ac b/net/hlfl/patches/patch-ac new file mode 100644 index 00000000000..0669177e847 --- /dev/null +++ b/net/hlfl/patches/patch-ac @@ -0,0 +1,23 @@ +$NetBSD: patch-ac,v 1.1 2006/01/08 11:46:43 wiz Exp $ + +--- src/hlfl.def.orig 2002-10-27 20:43:28.000000000 +0900 ++++ src/hlfl.def +@@ -4,15 +4,15 @@ + DEF("<->", ACCEPT_TWO_WAYS) + DEF("<=>>", ACCEPT_TWO_WAYS_ESTABLISHED) + DEF("<<=>", ACCEPT_TWO_WAYS_ESTABLISHED_REVERSE) +-DEF("X->", DENY_OUT) +-DEF("<-X", DENY_IN) + DEF("<-X!", REJECT_IN) + DEF("X!->", REJECT_OUT) + DEF("!X->", REJECT_OUT) + DEF("X!", REJECT_ALL) +-DEF("X", DENY_ALL) ++DEF("X->", DENY_OUT) ++DEF("<-X", DENY_IN) + DEF("->", ACCEPT_ONE_WAY) + DEF("<-", ACCEPT_ONE_WAY_REVERSE) ++DEF("X", DENY_ALL) + DEF("accept", ACCEPT) + DEF("deny", DENY) + DEF("reject", REJECT) diff --git a/net/hlfl/patches/patch-ad b/net/hlfl/patches/patch-ad new file mode 100644 index 00000000000..4a21bc37eaf --- /dev/null +++ b/net/hlfl/patches/patch-ad @@ -0,0 +1,13 @@ +$NetBSD: patch-ad,v 1.1 2006/01/08 11:46:43 wiz Exp $ + +--- src/linux_netfilter.c.orig 2003-06-17 07:17:59.000000000 +0900 ++++ src/linux_netfilter.c +@@ -15,7 +15,7 @@ + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * +- * Reference : http://netfilter.kernelnotes.org/iptables-HOWTO-7.html ++ * Reference : http://www.netfilter.org/documentation/HOWTO/packet-filtering-HOWTO-7.html + */ + + #include "includes.h" |