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