From: stephen hemminger Date: Fri, 19 May 2017 16:55:51 +0000 (-0700) Subject: inet: fix warning about missing prototype X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=9691724e5658dfb19d747b00bf34ce9df0d1b20b;p=openwrt%2Fstaging%2Fblogic.git inet: fix warning about missing prototype The prototype for inet_rcv_saddr_equal was not being included. Signed-off-by: Stephen Hemminger Signed-off-by: David S. Miller --- 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 #include #include +#include #ifdef INET_CSK_DEBUG const char inet_csk_timer_bug_msg[] = "inet_csk BUG: unknown timer value\n";