From 25cafbfd9c087bc4d3e93c5d317ef1eac4519593 Mon Sep 17 00:00:00 2001 From: Imre Kaloz Date: Wed, 22 Mar 2006 11:43:35 +0000 Subject: [PATCH] upgrade to iptables 1.3.5 SVN-Revision: 3448 --- openwrt/package/iptables/Makefile | 4 +-- .../iptables/patches/03-gcc4_fix.patch | 30 ------------------- 2 files changed, 2 insertions(+), 32 deletions(-) delete mode 100644 openwrt/package/iptables/patches/03-gcc4_fix.patch diff --git a/openwrt/package/iptables/Makefile b/openwrt/package/iptables/Makefile index 1792fe37c6..38eb907183 100644 --- a/openwrt/package/iptables/Makefile +++ b/openwrt/package/iptables/Makefile @@ -3,9 +3,9 @@ include $(TOPDIR)/rules.mk PKG_NAME:=iptables -PKG_VERSION:=1.3.4 +PKG_VERSION:=1.3.5 PKG_RELEASE:=1 -PKG_MD5SUM:=fdff8abe890807968226b0c374335305 +PKG_MD5SUM:=00fb916fa8040ca992a5ace56d905ea5 PKG_SOURCE_URL:=http://www.netfilter.org/projects/iptables/files \ ftp://ftp.be.netfilter.org/pub/netfilter/iptables/ \ diff --git a/openwrt/package/iptables/patches/03-gcc4_fix.patch b/openwrt/package/iptables/patches/03-gcc4_fix.patch deleted file mode 100644 index 26ef110c7a..0000000000 --- a/openwrt/package/iptables/patches/03-gcc4_fix.patch +++ /dev/null @@ -1,30 +0,0 @@ -diff -Nur iptables-1.3.4/extensions/libipt_string.c iptables-1.3.4-openwrt/extensions/libipt_string.c ---- iptables-1.3.4/extensions/libipt_string.c 2005-10-31 20:03:50.000000000 +0100 -+++ iptables-1.3.4-openwrt/extensions/libipt_string.c 2005-12-15 15:08:27.000000000 +0100 -@@ -63,7 +63,7 @@ - } - - static void --parse_string(const unsigned char *s, struct ipt_string_info *info) -+parse_string(const char *s, struct ipt_string_info *info) - { - if (strlen(s) <= IPT_STRING_MAX_PATTERN_SIZE) { - strncpy(info->pattern, s, IPT_STRING_MAX_PATTERN_SIZE); -@@ -74,7 +74,7 @@ - } - - static void --parse_algo(const unsigned char *s, struct ipt_string_info *info) -+parse_algo(const char *s, struct ipt_string_info *info) - { - if (strlen(s) <= IPT_STRING_MAX_ALGO_NAME_SIZE) { - strncpy(info->algo, s, IPT_STRING_MAX_ALGO_NAME_SIZE); -@@ -84,7 +84,7 @@ - } - - static void --parse_hex_string(const unsigned char *s, struct ipt_string_info *info) -+parse_hex_string(const char *s, struct ipt_string_info *info) - { - int i=0, slen, sindex=0, schar; - short hex_f = 0, literal_f = 0; -- 2.30.2