diff -ru ipt_netflow-1.8.orig/ipt_NETFLOW.c ipt_netflow-1.8/ipt_NETFLOW.c --- ipt_netflow-1.8.orig/ipt_NETFLOW.c 2013-05-07 10:20:54.000000000 +0000 +++ ipt_netflow-1.8/ipt_NETFLOW.c 2013-05-07 10:57:43.864990853 +0000 @@ -854,9 +854,8 @@ ipt_netflow_find(const struct ipt_netflow_tuple *tuple, unsigned int hash) { struct ipt_netflow *nf; - struct hlist_node *pos; - hlist_for_each_entry(nf, pos, &ipt_netflow_hash[hash], hlist) { + hlist_for_each_entry(nf, &ipt_netflow_hash[hash], hlist) { if (ipt_netflow_tuple_equal(tuple, &nf->tuple) && nf->nr_bytes < FLOW_FULL_WATERMARK) { NETFLOW_STAT_INC(found);