dect
/
linux-2.6
Archived
13
0
Fork 0

[NET] IEEE80211: Use htons() where appropriate.

Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
YOSHIFUJI Hideaki 2007-03-07 14:19:05 +09:00 committed by David S. Miller
parent f576e24ffa
commit 1c9e8ef7f7
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ static int ieee80211_classify(struct sk_buff *skb)
struct iphdr *ip;
eth = (struct ethhdr *)skb->data;
if (eth->h_proto != __constant_htons(ETH_P_IP))
if (eth->h_proto != htons(ETH_P_IP))
return 0;
ip = skb->nh.iph;