Re: [PATCH] netfilter: xt_osf: remove unused variable

2016-02-29 Thread Pablo Neira Ayuso
On Tue, Feb 23, 2016 at 01:40:10PM +0530, Sudip Mukherjee wrote: > While building with W=1 we got the warning: > net/netfilter/xt_osf.c:265:9: warning: variable 'loop_cont' set but not used > > The local variable loop_cont was only initialized and then assigned a > value but was never used or

[PATCH] netfilter: xt_osf: remove unused variable

2016-02-23 Thread Sudip Mukherjee
While building with W=1 we got the warning: net/netfilter/xt_osf.c:265:9: warning: variable 'loop_cont' set but not used The local variable loop_cont was only initialized and then assigned a value but was never used or checked after that. While removing the variable, the case of OSFOPT_TS was not