Repository : ssh://git@open-mesh.org/batctl
On branch : master
commit 1d67fc32009777b1ae1070a484abb65577b918f8 Author: Sven Eckelmann sven.eckelmann@openmesh.com Date: Tue Dec 5 11:39:29 2017 +0100
batctl: Let packet.h include its headers directly
The headers used by packet.h should also be included by it directly. main.h is currently dealing with it in batman-adv, but this will no longer work when this header is moved to include/uapi/linux/.
Signed-off-by: Sven Eckelmann sven.eckelmann@openmesh.com
1d67fc32009777b1ae1070a484abb65577b918f8 packet.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/packet.h b/packet.h index dccbd4a..56f9b90 100644 --- a/packet.h +++ b/packet.h @@ -20,6 +20,7 @@ #define _NET_BATMAN_ADV_PACKET_H_
#include <asm/byteorder.h> +#include <linux/if_ether.h> #include <linux/types.h>
/**