]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
mac80211: don't shadow mgmt variable in ieee80211_rx_h_action
authorJohn W. Linville <linville@tuxdriver.com>
Thu, 24 Jun 2010 15:13:56 +0000 (11:13 -0400)
committerJohn W. Linville <linville@tuxdriver.com>
Thu, 24 Jun 2010 15:13:56 +0000 (11:13 -0400)
net/mac80211/rx.c:2059:39: warning: symbol 'mgmt' shadows an earlier one
net/mac80211/rx.c:1916:31: originally declared here

Signed-off-by: John W. Linville <linville@tuxdriver.com>
net/mac80211/rx.c

index 1f76352caa9eb0e2995dadb904d150b3143d7974..ab58a5d66d2ee898b7520fd22eec3860aa91192f 100644 (file)
@@ -2056,11 +2056,11 @@ ieee80211_rx_h_action(struct ieee80211_rx_data *rx)
        nskb = skb_copy_expand(rx->skb, local->hw.extra_tx_headroom, 0,
                               GFP_ATOMIC);
        if (nskb) {
-               struct ieee80211_mgmt *mgmt = (void *)nskb->data;
+               struct ieee80211_mgmt *nmgmt = (void *)nskb->data;
 
-               mgmt->u.action.category |= 0x80;
-               memcpy(mgmt->da, mgmt->sa, ETH_ALEN);
-               memcpy(mgmt->sa, rx->sdata->vif.addr, ETH_ALEN);
+               nmgmt->u.action.category |= 0x80;
+               memcpy(nmgmt->da, nmgmt->sa, ETH_ALEN);
+               memcpy(nmgmt->sa, rx->sdata->vif.addr, ETH_ALEN);
 
                memset(nskb->cb, 0, sizeof(nskb->cb));