Drop priority level of the logger message for unexpected replay counter

This can happen frequently during normal EAPOL-Key exchanges and there
is no need to log it at info level.

Signed-hostap: Jouni Malinen <j@w1.fi>
This commit is contained in:
Jouni Malinen 2011-12-24 13:39:40 +02:00
parent a6cc0602dd
commit 9c3c38db1e

View file

@ -869,7 +869,7 @@ void wpa_receive(struct wpa_authenticator *wpa_auth,
if (!(key_info & WPA_KEY_INFO_REQUEST) &&
!wpa_replay_counter_valid(sm, key->replay_counter)) {
int i;
wpa_auth_vlogger(wpa_auth, sm->addr, LOGGER_INFO,
wpa_auth_vlogger(wpa_auth, sm->addr, LOGGER_DEBUG,
"received EAPOL-Key %s with unexpected "
"replay counter", msgtxt);
for (i = 0; i < RSNA_MAX_EAPOL_RETRIES; i++) {