[NETFILTER]: nf_conntrack_ipv4: fix incorrect #ifdef config name

The option is named CONFIG_NF_NAT not CONFIG_IP_NF_NAT. Remove the ifdef
completely since helpers also expect defragmented packet even without
NAT.

Noticed by Robert P. J. Day <rpjday@mindspring.com>

Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Patrick McHardy and committed by David S. Miller 3ad2a6fb 5397e97d

-2
-2
net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.c
··· 154 const struct net_device *out, 155 int (*okfn)(struct sk_buff *)) 156 { 157 - #if !defined(CONFIG_IP_NF_NAT) && !defined(CONFIG_IP_NF_NAT_MODULE) 158 /* Previously seen (loopback)? Ignore. Do this before 159 fragment check. */ 160 if ((*pskb)->nfct) 161 return NF_ACCEPT; 162 - #endif 163 164 /* Gather fragments. */ 165 if (ip_hdr(*pskb)->frag_off & htons(IP_MF | IP_OFFSET)) {
··· 154 const struct net_device *out, 155 int (*okfn)(struct sk_buff *)) 156 { 157 /* Previously seen (loopback)? Ignore. Do this before 158 fragment check. */ 159 if ((*pskb)->nfct) 160 return NF_ACCEPT; 161 162 /* Gather fragments. */ 163 if (ip_hdr(*pskb)->frag_off & htons(IP_MF | IP_OFFSET)) {