projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5276e16
)
netfilter: xt_CT: remove a compile warning
author
Pablo Neira Ayuso
<
[email protected]
>
Tue, 3 Apr 2012 08:08:48 +0000
(10:08 +0200)
committer
Pablo Neira Ayuso
<
[email protected]
>
Tue, 3 Apr 2012 08:08:48 +0000
(10:08 +0200)
If CONFIG_NF_CONNTRACK_TIMEOUT=n we have following warning :
CC [M] net/netfilter/xt_CT.o
net/netfilter/xt_CT.c: In function ‘xt_ct_tg_check_v1’:
net/netfilter/xt_CT.c:284: warning: label ‘err4’ defined but not used
Reported-by: Eric Dumazet <
[email protected]
>
Signed-off-by: Pablo Neira Ayuso <
[email protected]
>
net/netfilter/xt_CT.c
patch
|
blob
|
history
diff --git
a/net/netfilter/xt_CT.c
b/net/netfilter/xt_CT.c
index 0c8e43810ce363190c2c49477a3490ee6a077191..138b75e41fddba8b0cdf55f693f8c44c264c4568 100644
(file)
--- a/
net/netfilter/xt_CT.c
+++ b/
net/netfilter/xt_CT.c
@@
-281,8
+281,10
@@
out:
info->ct = ct;
return 0;
+#ifdef CONFIG_NF_CONNTRACK_TIMEOUT
err4:
rcu_read_unlock();
+#endif
err3:
nf_conntrack_free(ct);
err2: