]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Drop priority level of the logger message for unexpected replay counter
authorJouni Malinen <j@w1.fi>
Sat, 24 Dec 2011 11:39:40 +0000 (13:39 +0200)
committerJouni Malinen <j@w1.fi>
Sat, 24 Dec 2011 11:39:40 +0000 (13:39 +0200)
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>

src/ap/wpa_auth.c

index 1b5a5a242cf1097a46725268e727bad6b6d8febe..6895a88100281ec9a100a062eeb961b5e7c0d08b 100644 (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++) {