diff options
Diffstat (limited to 'net/ipv4/ipconfig.c')
| -rw-r--r-- | net/ipv4/ipconfig.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv4/ipconfig.c b/net/ipv4/ipconfig.c index 67890928164..b9d84e800cf 100644 --- a/net/ipv4/ipconfig.c +++ b/net/ipv4/ipconfig.c @@ -53,6 +53,7 @@  #include <linux/root_dev.h>  #include <linux/delay.h>  #include <linux/nfs_fs.h> +#include <linux/slab.h>  #include <net/net_namespace.h>  #include <net/arp.h>  #include <net/ip.h> @@ -975,7 +976,7 @@ static int __init ic_bootp_recv(struct sk_buff *skb, struct net_device *dev, str  	/* Is it a reply for the device we are configuring? */  	if (b->xid != ic_dev_xid) {  		if (net_ratelimit()) -			printk(KERN_ERR "DHCP/BOOTP: Ignoring delayed packet \n"); +			printk(KERN_ERR "DHCP/BOOTP: Ignoring delayed packet\n");  		goto drop_unlock;  	}  |