--- pre7-8/net/ipv4/ipconfig.c.orig Wed May 10 03:58:43 2000 +++ pre7-8/net/ipv4/ipconfig.c Wed May 10 03:58:26 2000 @@ -500,7 +500,7 @@ /* * Send BOOTP request to single interface. */ -static void __init ic_bootp_send_if(struct ic_device *d, u32 jiffies) +static void __init ic_bootp_send_if(struct ic_device *d, u32 num_jiffies) { struct net_device *dev = d->dev; struct sk_buff *skb; @@ -545,7 +545,7 @@ } b->hlen = dev->addr_len; memcpy(b->hw_addr, dev->dev_addr, dev->addr_len); - b->secs = htons(jiffies / HZ); + b->secs = htons(num_jiffies / HZ); b->xid = ic_bootp_xid; ic_bootp_init_ext(b->vendor_area); @@ -562,13 +562,13 @@ /* * Send BOOTP requests to all interfaces. */ -static void __init ic_bootp_send(u32 jiffies) +static void __init ic_bootp_send(u32 num_jiffies) { struct ic_device *d; for(d=ic_first_dev; d; d=d->next) if (d->able & IC_BOOTP) - ic_bootp_send_if(d, jiffies); + ic_bootp_send_if(d, num_jiffies); }