diff options
| author | David S. Miller <davem@davemloft.net> | 2014-01-06 13:36:06 -0500 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2014-01-06 13:36:06 -0500 |
| commit | 83111e7fe85f2dc8b61e463c71b971f4998d8e53 (patch) | |
| tree | 5b141b585cd06046fd0f90f2dec1143c40688583 | |
| parent | 9aa28f2b71055d5ae17a2e1daee359d4174bb13e (diff) | |
netfilter: Fix build failure in nfnetlink_queue_core.c.
net/netfilter/nfnetlink_queue_core.c: In function 'nfqnl_put_sk_uidgid':
net/netfilter/nfnetlink_queue_core.c:304:35: error: 'TCP_TIME_WAIT' undeclared (first use in this function)
net/netfilter/nfnetlink_queue_core.c:304:35: note: each undeclared identifier is reported only once for each function it appears in
make[3]: *** [net/netfilter/nfnetlink_queue_core.o] Error 1
Just a missing include of net/tcp_states.h
Reported-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
| -rw-r--r-- | net/netfilter/nfnetlink_queue_core.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/netfilter/nfnetlink_queue_core.c b/net/netfilter/nfnetlink_queue_core.c index d3cf12b83174..b5e1f82890df 100644 --- a/net/netfilter/nfnetlink_queue_core.c +++ b/net/netfilter/nfnetlink_queue_core.c | |||
| @@ -29,6 +29,7 @@ | |||
| 29 | #include <linux/netfilter/nfnetlink_queue.h> | 29 | #include <linux/netfilter/nfnetlink_queue.h> |
| 30 | #include <linux/list.h> | 30 | #include <linux/list.h> |
| 31 | #include <net/sock.h> | 31 | #include <net/sock.h> |
| 32 | #include <net/tcp_states.h> | ||
| 32 | #include <net/netfilter/nf_queue.h> | 33 | #include <net/netfilter/nf_queue.h> |
| 33 | #include <net/netns/generic.h> | 34 | #include <net/netns/generic.h> |
| 34 | #include <net/netfilter/nfnetlink_queue.h> | 35 | #include <net/netfilter/nfnetlink_queue.h> |
