Remove unused variable

Signed-hostap: Jouni Malinen <j@w1.fi>
This commit is contained in:
Jouni Malinen 2012-04-28 18:30:41 +03:00
parent e09e61c2c1
commit d84b913955
1 changed files with 1 additions and 2 deletions

View File

@ -635,7 +635,7 @@ static void gas_serv_rx_public_action(void *ctx, const u8 *buf, size_t len,
struct hostapd_data *hapd = ctx; struct hostapd_data *hapd = ctx;
const struct ieee80211_mgmt *mgmt; const struct ieee80211_mgmt *mgmt;
size_t hdr_len; size_t hdr_len;
const u8 *sa, *bssid, *data; const u8 *sa, *data;
mgmt = (const struct ieee80211_mgmt *) buf; mgmt = (const struct ieee80211_mgmt *) buf;
hdr_len = (const u8 *) &mgmt->u.action.u.vs_public_action.action - buf; hdr_len = (const u8 *) &mgmt->u.action.u.vs_public_action.action - buf;
@ -644,7 +644,6 @@ static void gas_serv_rx_public_action(void *ctx, const u8 *buf, size_t len,
if (mgmt->u.action.category != WLAN_ACTION_PUBLIC) if (mgmt->u.action.category != WLAN_ACTION_PUBLIC)
return; return;
sa = mgmt->sa; sa = mgmt->sa;
bssid = mgmt->bssid;
len -= hdr_len; len -= hdr_len;
data = &mgmt->u.action.u.public_action.action; data = &mgmt->u.action.u.public_action.action;
switch (data[0]) { switch (data[0]) {