diff options
author | stephen hemminger <stephen@networkplumber.org> | 2017-05-19 19:55:51 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-05-21 20:42:36 +0300 |
commit | 9691724e5658dfb19d747b00bf34ce9df0d1b20b (patch) | |
tree | 862f5a20af664bd9ad1e261940d91d2a82079658 /net/ipv4/inet_connection_sock.c | |
parent | 9e7b19c51681f041af418ee87e5bc7b4b67e3318 (diff) | |
download | linux-9691724e5658dfb19d747b00bf34ce9df0d1b20b.tar.xz |
inet: fix warning about missing prototype
The prototype for inet_rcv_saddr_equal was not being included.
Signed-off-by: Stephen Hemminger <sthemmin@microsoft.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/inet_connection_sock.c')
-rw-r--r-- | net/ipv4/inet_connection_sock.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv4/inet_connection_sock.c b/net/ipv4/inet_connection_sock.c index 1054d330bf9d..82dec8825d28 100644 --- a/net/ipv4/inet_connection_sock.c +++ b/net/ipv4/inet_connection_sock.c @@ -25,6 +25,7 @@ #include <net/xfrm.h> #include <net/tcp.h> #include <net/sock_reuseport.h> +#include <net/addrconf.h> #ifdef INET_CSK_DEBUG const char inet_csk_timer_bug_msg[] = "inet_csk BUG: unknown timer value\n"; |