diff options
Diffstat (limited to 'net/ipv4/ipconfig.c')
-rw-r--r-- | net/ipv4/ipconfig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/ipconfig.c b/net/ipv4/ipconfig.c index af5d5b39fc13..c5c107a01823 100644 --- a/net/ipv4/ipconfig.c +++ b/net/ipv4/ipconfig.c | |||
@@ -757,8 +757,8 @@ static void __init ic_bootp_send_if(struct ic_device *d, unsigned long jiffies_d | |||
757 | /* Chain packet down the line... */ | 757 | /* Chain packet down the line... */ |
758 | skb->dev = dev; | 758 | skb->dev = dev; |
759 | skb->protocol = htons(ETH_P_IP); | 759 | skb->protocol = htons(ETH_P_IP); |
760 | if ((dev->hard_header && | 760 | if (dev_hard_header(skb, dev, ntohs(skb->protocol), |
761 | dev->hard_header(skb, dev, ntohs(skb->protocol), dev->broadcast, dev->dev_addr, skb->len) < 0) || | 761 | dev->broadcast, dev->dev_addr, skb->len) < 0 || |
762 | dev_queue_xmit(skb) < 0) | 762 | dev_queue_xmit(skb) < 0) |
763 | printk("E"); | 763 | printk("E"); |
764 | } | 764 | } |