aboutsummaryrefslogtreecommitdiff
path: root/net/netfilter/nf_nat_proto_udp.c
diff options
context:
space:
mode:
authorGravatar Duan Jiong <duanj.fnst@cn.fujitsu.com> 2014-06-30 09:19:32 +0800
committerGravatar Pablo Neira Ayuso <pablo@netfilter.org> 2014-06-30 11:38:03 +0200
commit24de3d377539e384621c5b8f8f8d8d01852dddc8 (patch)
treeed111914a78a30dfb8165a0edbb4a56e2e95c69d /net/netfilter/nf_nat_proto_udp.c
parentnetfilter: nft_log: fix coccinelle warnings (diff)
downloadlinux-24de3d377539e384621c5b8f8f8d8d01852dddc8.tar.gz
linux-24de3d377539e384621c5b8f8f8d8d01852dddc8.tar.bz2
linux-24de3d377539e384621c5b8f8f8d8d01852dddc8.zip
netfilter: use IS_ENABLED() macro
replace: #if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE) with #if IS_ENABLED(CONFIG_NF_CT_NETLINK) replace: #if !defined(CONFIG_NF_NAT) && !defined(CONFIG_NF_NAT_MODULE) with #if !IS_ENABLED(CONFIG_NF_NAT) replace: #if !defined(CONFIG_NF_CONNTRACK) && !defined(CONFIG_NF_CONNTRACK_MODULE) with #if !IS_ENABLED(CONFIG_NF_CONNTRACK) And add missing: IS_ENABLED(CONFIG_NF_CT_NETLINK) in net/ipv{4,6}/netfilter/nf_nat_l3proto_ipv{4,6}.c Signed-off-by: Duan Jiong <duanj.fnst@cn.fujitsu.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/netfilter/nf_nat_proto_udp.c')
-rw-r--r--net/netfilter/nf_nat_proto_udp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/nf_nat_proto_udp.c b/net/netfilter/nf_nat_proto_udp.c
index 7df613fb34a2..b0ede2f0d8bc 100644
--- a/net/netfilter/nf_nat_proto_udp.c
+++ b/net/netfilter/nf_nat_proto_udp.c
@@ -70,7 +70,7 @@ const struct nf_nat_l4proto nf_nat_l4proto_udp = {
.manip_pkt = udp_manip_pkt,
.in_range = nf_nat_l4proto_in_range,
.unique_tuple = udp_unique_tuple,
-#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
+#if IS_ENABLED(CONFIG_NF_CT_NETLINK)
.nlattr_to_range = nf_nat_l4proto_nlattr_to_range,
#endif
};