mirror of https://github.com/hak5/openwrt-owl.git
fix kernel header breakage, which caused a compile error in igmpproxy on big-endian targets
SVN-Revision: 12143owl
parent
2174f5d95c
commit
806f149413
|
@ -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 */
|
Loading…
Reference in New Issue