Browse Source

Fix a typo in Disassociation frame building

This did not really change any behavior since Deauthentication frame
uses the same format.
Jouni Malinen 14 years ago
parent
commit
a33c5f96b8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      hostapd/ctrl_iface.c

+ 1 - 1
hostapd/ctrl_iface.c

@@ -227,7 +227,7 @@ static int hostapd_ctrl_iface_disassociate(struct hostapd_data *hapd,
 		os_memcpy(mgmt.da, addr, ETH_ALEN);
 		os_memcpy(mgmt.sa, hapd->own_addr, ETH_ALEN);
 		os_memcpy(mgmt.bssid, hapd->own_addr, ETH_ALEN);
-		mgmt.u.deauth.reason_code =
+		mgmt.u.disassoc.reason_code =
 			host_to_le16(WLAN_REASON_PREV_AUTH_NOT_VALID);
 		if (hapd->driver->send_frame(hapd->drv_priv, (u8 *) &mgmt,
 					     IEEE80211_HDRLEN +