aboutsummaryrefslogtreecommitdiffstats
path: root/package/iptables/patches
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2005-12-16 09:37:10 +0000
committerImre Kaloz <kaloz@openwrt.org>2005-12-16 09:37:10 +0000
commit4b46c0c28cec82f3f9cfd573fe223b58b70a14d1 (patch)
tree176e078e40a18c734a2d2532725850239673d323 /package/iptables/patches
parentcacbfa463daf66bf92a7640c336cc61952e9d5ce (diff)
downloadupstream-4b46c0c28cec82f3f9cfd573fe223b58b70a14d1.tar.gz
upstream-4b46c0c28cec82f3f9cfd573fe223b58b70a14d1.tar.bz2
upstream-4b46c0c28cec82f3f9cfd573fe223b58b70a14d1.zip
add gcc4 fix for iptables 1.3.4
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2692 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/iptables/patches')
-rw-r--r--package/iptables/patches/03-gcc4_fix.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/package/iptables/patches/03-gcc4_fix.patch b/package/iptables/patches/03-gcc4_fix.patch
new file mode 100644
index 0000000000..26ef110c7a
--- /dev/null
+++ b/package/iptables/patches/03-gcc4_fix.patch
@@ -0,0 +1,30 @@
+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;