Drop logging priority for handle_auth_cb no-STA-match messages
This message was printed and MSG_INFO level which would be more reasonable for error cases where hostapd has accepted authentication. However, this is not really an error case for the cases where authentication was rejected (e.g., due to MAC ACL). Drop this to use MSG_DEBUG level. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
6588f71222
commit
dc1b1c8db7
1 changed files with 2 additions and 1 deletions
|
@ -4054,7 +4054,8 @@ static void handle_auth_cb(struct hostapd_data *hapd,
|
|||
|
||||
sta = ap_get_sta(hapd, mgmt->da);
|
||||
if (!sta) {
|
||||
wpa_printf(MSG_INFO, "handle_auth_cb: STA " MACSTR " not found",
|
||||
wpa_printf(MSG_DEBUG, "handle_auth_cb: STA " MACSTR
|
||||
" not found",
|
||||
MAC2STR(mgmt->da));
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue