From: Jouni Malinen Date: Mon, 24 Jan 2011 14:57:36 +0000 (+0200) Subject: wlantest: Fix compiler warnings X-Git-Tag: hostap-1-bp~624 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9559a7f882b26d822e263b078e426a5854d52a3a;p=thirdparty%2Fhostap.git wlantest: Fix compiler warnings --- diff --git a/wlantest/rx_data.c b/wlantest/rx_data.c index 9e0432192..57f871ccd 100644 --- a/wlantest/rx_data.c +++ b/wlantest/rx_data.c @@ -339,7 +339,7 @@ skip_replay_det: decrypted = ccmp_decrypt(sta->ptk.tk1, hdr, data, len, &dlen); if (decrypted) { u16 fc = le_to_host16(hdr->frame_control); - u8 *peer_addr = NULL; + const u8 *peer_addr = NULL; if (!(fc & (WLAN_FC_FROMDS | WLAN_FC_TODS))) peer_addr = hdr->addr1; rx_data_process(wt, bss->bssid, sta->addr, dst, src, decrypted, @@ -380,7 +380,6 @@ static void rx_data_bss(struct wlantest *wt, const struct ieee80211_hdr *hdr, rx_data_bss_prot(wt, hdr, qos, dst, src, data, len); else { const u8 *bssid, *sta_addr, *peer_addr; - int direct_link = !(fc & (WLAN_FC_FROMDS | WLAN_FC_TODS)); if (fc & WLAN_FC_TODS) { bssid = hdr->addr1; sta_addr = hdr->addr2;