diff options
Diffstat (limited to 'net/ipv4/ip_input.c')
| -rw-r--r-- | net/ipv4/ip_input.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/ip_input.c b/net/ipv4/ip_input.c index d7b2b0987a3..c8f48efc5fd 100644 --- a/net/ipv4/ip_input.c +++ b/net/ipv4/ip_input.c @@ -268,7 +268,7 @@ int ip_local_deliver(struct sk_buff *skb)  static inline int ip_rcv_options(struct sk_buff *skb)  {  	struct ip_options *opt; -	struct iphdr *iph; +	const struct iphdr *iph;  	struct net_device *dev = skb->dev;  	/* It looks as overkill, because not all @@ -374,7 +374,7 @@ drop:   */  int ip_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)  { -	struct iphdr *iph; +	const struct iphdr *iph;  	u32 len;  	/* When the interface is in promisc. mode, drop all the crap  |