Browse Source

Fixed auth_send_eapol() to use correct ctx structure

Jouni Malinen 16 years ago
parent
commit
da3c6a5e2b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      wpa_supplicant/ibss_rsn.c

+ 2 - 2
wpa_supplicant/ibss_rsn.c

@@ -184,8 +184,8 @@ static const u8 * auth_get_psk(void *ctx, const u8 *addr, const u8 *prev_psk)
 static int auth_send_eapol(void *ctx, const u8 *addr, const u8 *data,
 			   size_t data_len, int encrypt)
 {
-	struct ibss_rsn_peer *peer = ctx;
-	struct wpa_supplicant *wpa_s = peer->ibss_rsn->wpa_s;
+	struct ibss_rsn *ibss_rsn = ctx;
+	struct wpa_supplicant *wpa_s = ibss_rsn->wpa_s;
 
 	wpa_printf(MSG_DEBUG, "AUTH: %s(addr=" MACSTR " data_len=%lu "
 		   "encrypt=%d)",