From: Felix Fietkau Date: Tue, 5 Aug 2008 17:33:09 +0000 (+0000) Subject: fix kernel header breakage, which caused a compile error in igmpproxy on big-endian... X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=233a18d9fdce568db7a1cac6c2fa0322c7cafeb1 fix kernel header breakage, which caused a compile error in igmpproxy on big-endian targets SVN-Revision: 12143 --- diff --git a/target/linux/generic-2.6/patches-2.6.26/906-pim_h_compile_fix.patch b/target/linux/generic-2.6/patches-2.6.26/906-pim_h_compile_fix.patch new file mode 100644 index 0000000000..51ca9746c2 --- /dev/null +++ b/target/linux/generic-2.6/patches-2.6.26/906-pim_h_compile_fix.patch @@ -0,0 +1,11 @@ +--- a/include/linux/pim.h ++++ b/include/linux/pim.h +@@ -9,7 +9,7 @@ + __u8 pim_type:4, /* PIM message type */ + pim_ver:4; /* PIM version */ + #elif defined(__BIG_ENDIAN_BITFIELD) +- __u8 pim_ver:4; /* PIM version */ ++ __u8 pim_ver:4, /* PIM version */ + pim_type:4; /* PIM message type */ + #endif + __u8 pim_rsv; /* Reserved */