[NETFILTER]: Rename skb_ip_make_writable() to skb_make_writable()
[linux-block.git] / net / ipv4 / netfilter / ip_nat_proto_tcp.c
index 6113a16af867d9594af35e7f6ceffc0b550b0a5b..1d381bf68574ade3451930faa7c82ee9c42020f4 100644 (file)
@@ -103,7 +103,7 @@ tcp_manip_pkt(struct sk_buff **pskb,
        if ((*pskb)->len >= hdroff + sizeof(struct tcphdr))
                hdrsize = sizeof(struct tcphdr);
 
-       if (!skb_ip_make_writable(pskb, hdroff + hdrsize))
+       if (!skb_make_writable(pskb, hdroff + hdrsize))
                return 0;
 
        iph = (struct iphdr *)((*pskb)->data + iphdroff);