summaryrefslogtreecommitdiff
path: root/openwrt/package/iptables/patches
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2006-03-22 11:43:35 +0000
committerImre Kaloz <kaloz@openwrt.org>2006-03-22 11:43:35 +0000
commit25cafbfd9c087bc4d3e93c5d317ef1eac4519593 (patch)
tree31c680e3004b0c4b665f7c04a4366fd61be1921d /openwrt/package/iptables/patches
parentd1c034d8ab9da5e45f34f9964e1b70e4f2b4e703 (diff)
downloadmtk-20170518-25cafbfd9c087bc4d3e93c5d317ef1eac4519593.zip
mtk-20170518-25cafbfd9c087bc4d3e93c5d317ef1eac4519593.tar.gz
mtk-20170518-25cafbfd9c087bc4d3e93c5d317ef1eac4519593.tar.bz2
upgrade to iptables 1.3.5
SVN-Revision: 3448
Diffstat (limited to 'openwrt/package/iptables/patches')
-rw-r--r--openwrt/package/iptables/patches/03-gcc4_fix.patch30
1 files changed, 0 insertions, 30 deletions
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 26ef110..0000000
--- 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;