Explorar el Código

[NETFILTER]: Add missing include to ip_conntrack_tuple.h

Without this #include, __be16 is not defined and userspace programs
will break.

Signed-off-by: Harald Welte <laforge@netfilter.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Harald Welte hace 19 años
padre
commit
5bbc243aaf
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      include/linux/netfilter_ipv4/ip_conntrack_tuple.h

+ 2 - 0
include/linux/netfilter_ipv4/ip_conntrack_tuple.h

@@ -1,6 +1,8 @@
 #ifndef _IP_CONNTRACK_TUPLE_H
 #define _IP_CONNTRACK_TUPLE_H
 
+#include <linux/types.h>
+
 /* A `tuple' is a structure containing the information to uniquely
   identify a connection.  ie. if two packets have the same tuple, they
   are in the same connection; if not, they are not.