]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Drop logging priority for handle_auth_cb no-STA-match messages
authorJouni Malinen <j@w1.fi>
Sun, 14 Oct 2018 17:03:55 +0000 (20:03 +0300)
committerJouni Malinen <j@w1.fi>
Sun, 14 Oct 2018 17:03:55 +0000 (20:03 +0300)
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>
src/ap/ieee802_11.c

index 00ff116940996ade16f0d56385e4e6c2df202ea3..68592d6afda52cc69f8d2ea514df0f8479c71388 100644 (file)
@@ -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;
        }