Re: [net-next PATCH] tcp: md5: hide unused variable

2017-06-21 Thread David Miller
From: Arnd Bergmann Date: Tue, 20 Jun 2017 22:11:21 +0200 > Changing from a memcpy to per-member comparison left the > size variable unused: > > net/ipv4/tcp_ipv4.c: In function 'tcp_md5_do_lookup': > net/ipv4/tcp_ipv4.c:910:15: error: unused variable 'size' > [-Werror=unused-variable] > > Thi

[net-next PATCH] tcp: md5: hide unused variable

2017-06-20 Thread Arnd Bergmann
Changing from a memcpy to per-member comparison left the size variable unused: net/ipv4/tcp_ipv4.c: In function 'tcp_md5_do_lookup': net/ipv4/tcp_ipv4.c:910:15: error: unused variable 'size' [-Werror=unused-variable] This does not show up when CONFIG_IPV6 is enabled, but the variable can be remo