[IPX]: Fix typo, ipxhdr() --> ipx_hdr()
authorDavid S. Miller <davem@sunset.davemloft.net>
Thu, 10 Aug 2006 00:36:15 +0000 (17:36 -0700)
committerDavid S. Miller <davem@sunset.davemloft.net>
Thu, 10 Aug 2006 00:36:15 +0000 (17:36 -0700)
Noticed by Dave Jones.

Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipx/af_ipx.c

index 4019642..bef3f61 100644 (file)
@@ -1645,7 +1645,7 @@ static int ipx_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_ty
        if (!pskb_may_pull(skb, sizeof(struct ipxhdr)))
                goto drop;
 
-       ipx_pktsize = ntohs(ipxhdr(skb)->ipx_pktsize);
+       ipx_pktsize = ntohs(ipx_hdr(skb)->ipx_pktsize);
        
        /* Too small or invalid header? */
        if (ipx_pktsize < sizeof(struct ipxhdr) ||