diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-08-03 10:45:31 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-08-03 10:45:31 +0000 |
commit | f9e118358ef2856a831a40c86becc758fee94bc9 (patch) | |
tree | 7e564b89af5290eb1aa91ff52ea6f89e27266449 /package/network/services | |
parent | 56cfc363b1149a3b72f963c231342db225936b42 (diff) | |
download | master-187ad058-f9e118358ef2856a831a40c86becc758fee94bc9.tar.gz master-187ad058-f9e118358ef2856a831a40c86becc758fee94bc9.tar.bz2 master-187ad058-f9e118358ef2856a831a40c86becc758fee94bc9.zip |
igmpproxy: add missing include
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41957 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/network/services')
-rw-r--r-- | package/network/services/igmpproxy/patches/010-missing_include.patch | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/package/network/services/igmpproxy/patches/010-missing_include.patch b/package/network/services/igmpproxy/patches/010-missing_include.patch new file mode 100644 index 0000000000..af0eab845b --- /dev/null +++ b/package/network/services/igmpproxy/patches/010-missing_include.patch @@ -0,0 +1,10 @@ +--- a/src/os-linux.h ++++ b/src/os-linux.h +@@ -3,6 +3,7 @@ + #include <linux/mroute.h> + #include <netinet/ip.h> + #include <netinet/igmp.h> ++#include <sys/types.h> + + static inline u_short ip_data_len(const struct ip *ip) + { |