]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
EAP-pwd: Fix the prefix in a debug message
authorJouni Malinen <quic_jouni@quicinc.com>
Tue, 1 Feb 2022 17:58:40 +0000 (19:58 +0200)
committerJouni Malinen <j@w1.fi>
Tue, 1 Feb 2022 17:58:40 +0000 (19:58 +0200)
This was copied from sae.c, but the debug message prefix was not changed
to match the use here.

Signed-off-by: Jouni Malinen <quic_jouni@quicinc.com>
src/eap_common/eap_pwd_common.c

index ff22b29b087a9d1f31093baf053072e5f7d679d0..0e3a7b2b3513169712b12afdd2f1e52fc5a98f46 100644 (file)
@@ -275,7 +275,7 @@ int compute_password_element(EAP_PWD_group *grp, u16 num,
            crypto_bignum_sub(prime, y, y) < 0 ||
            crypto_bignum_to_bin(y, x_y + MAX_ECC_PRIME_LEN,
                                 MAX_ECC_PRIME_LEN, primebytelen) < 0) {
-               wpa_printf(MSG_DEBUG, "SAE: Could not solve y");
+               wpa_printf(MSG_DEBUG, "EAP-pwd: Could not solve y");
                goto fail;
        }