From: Jouni Malinen Date: Sat, 24 Dec 2011 11:39:40 +0000 (+0200) Subject: Drop priority level of the logger message for unexpected replay counter X-Git-Tag: aosp-jb-start~104 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c3c38db1ea5a92d84d78bb6823bd95085bcbd69;p=thirdparty%2Fhostap.git 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 --- diff --git a/src/ap/wpa_auth.c b/src/ap/wpa_auth.c index 1b5a5a242..6895a8810 100644 --- a/src/ap/wpa_auth.c +++ b/src/ap/wpa_auth.c @@ -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++) {