mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 00:38:24 -05:00
Fix hostapd debug messages on wpa_pairwise and rsn_pairwise parsing
Incorrect value was printed out as the line number for this messages. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
29c940e7a6
commit
a7297ae5cb
@ -2628,7 +2628,7 @@ static int hostapd_config_fill(struct hostapd_config *conf,
|
|||||||
if (bss->wpa_pairwise &
|
if (bss->wpa_pairwise &
|
||||||
(WPA_CIPHER_NONE | WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)) {
|
(WPA_CIPHER_NONE | WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)) {
|
||||||
wpa_printf(MSG_ERROR, "Line %d: unsupported pairwise cipher suite '%s'",
|
wpa_printf(MSG_ERROR, "Line %d: unsupported pairwise cipher suite '%s'",
|
||||||
bss->wpa_pairwise, pos);
|
line, pos);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
} else if (os_strcmp(buf, "rsn_pairwise") == 0) {
|
} else if (os_strcmp(buf, "rsn_pairwise") == 0) {
|
||||||
@ -2638,7 +2638,7 @@ static int hostapd_config_fill(struct hostapd_config *conf,
|
|||||||
if (bss->rsn_pairwise &
|
if (bss->rsn_pairwise &
|
||||||
(WPA_CIPHER_NONE | WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)) {
|
(WPA_CIPHER_NONE | WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)) {
|
||||||
wpa_printf(MSG_ERROR, "Line %d: unsupported pairwise cipher suite '%s'",
|
wpa_printf(MSG_ERROR, "Line %d: unsupported pairwise cipher suite '%s'",
|
||||||
bss->rsn_pairwise, pos);
|
line, pos);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
#ifdef CONFIG_RSN_PREAUTH
|
#ifdef CONFIG_RSN_PREAUTH
|
||||||
|
Loading…
Reference in New Issue
Block a user