aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/net/netfilter/nf_nat_core.h4
-rw-r--r--net/ipv4/netfilter/nf_nat_core.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/include/net/netfilter/nf_nat_core.h b/include/net/netfilter/nf_nat_core.h
index 5aec85c2997..3dc7b98effe 100644
--- a/include/net/netfilter/nf_nat_core.h
+++ b/include/net/netfilter/nf_nat_core.h
@@ -21,9 +21,9 @@ static inline int nf_nat_initialized(struct nf_conn *ct,
21 enum nf_nat_manip_type manip) 21 enum nf_nat_manip_type manip)
22{ 22{
23 if (manip == IP_NAT_MANIP_SRC) 23 if (manip == IP_NAT_MANIP_SRC)
24 return ct->status & IPS_SRC_NAT_DONE_BIT; 24 return ct->status & IPS_SRC_NAT_DONE;
25 else 25 else
26 return ct->status & IPS_DST_NAT_DONE_BIT; 26 return ct->status & IPS_DST_NAT_DONE;
27} 27}
28 28
29struct nlattr; 29struct nlattr;
diff --git a/net/ipv4/netfilter/nf_nat_core.c b/net/ipv4/netfilter/nf_nat_core.c
index 6972ceee99c..3002c0492fb 100644
--- a/net/ipv4/netfilter/nf_nat_core.c
+++ b/net/ipv4/netfilter/nf_nat_core.c
@@ -323,9 +323,9 @@ nf_nat_setup_info(struct nf_conn *ct,
323 323
324 /* It's done. */ 324 /* It's done. */
325 if (maniptype == IP_NAT_MANIP_DST) 325 if (maniptype == IP_NAT_MANIP_DST)
326 ct->status |= IPS_DST_NAT_DONE_BIT; 326 ct->status |= IPS_DST_NAT_DONE;
327 else 327 else
328 ct->status |= IPS_SRC_NAT_DONE_BIT; 328 ct->status |= IPS_SRC_NAT_DONE;
329 329
330 return NF_ACCEPT; 330 return NF_ACCEPT;
331} 331}