]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
[NETFILTER]: Add missing include to ip_conntrack_tuple.h
authorHarald Welte <laforge@netfilter.org>
Tue, 11 Oct 2005 03:54:01 +0000 (20:54 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 11 Oct 2005 03:54:01 +0000 (20:54 -0700)
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>
include/linux/netfilter_ipv4/ip_conntrack_tuple.h

index 20e43f018b7c768cc8b9c13c23253e99c5561d6c..3232db11a4e54b6894ac35cbe669d1182629e252 100644 (file)
@@ -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.