diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2006-03-22 11:43:35 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2006-03-22 11:43:35 +0000 |
commit | cbd56f437802c1548bdc20ae05f54a092eae58a1 (patch) | |
tree | 32ba7981894904036a2cd86c92074b27b1b5066f /package/iptables/patches | |
parent | 978b353865a02780ba841337131df525e25f4263 (diff) | |
download | upstream-cbd56f437802c1548bdc20ae05f54a092eae58a1.tar.gz upstream-cbd56f437802c1548bdc20ae05f54a092eae58a1.tar.bz2 upstream-cbd56f437802c1548bdc20ae05f54a092eae58a1.zip |
upgrade to iptables 1.3.5
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3448 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/iptables/patches')
-rw-r--r-- | package/iptables/patches/03-gcc4_fix.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/package/iptables/patches/03-gcc4_fix.patch b/package/iptables/patches/03-gcc4_fix.patch deleted file mode 100644 index 26ef110c7a..0000000000 --- a/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; |