From: Henry Ptasinski Date: Thu, 11 Jan 2024 01:20:55 +0000 (-0800) Subject: wlantest: Fix the cipher name in a BIP-GMAC-256 test vector X-Git-Tag: hostap_2_11~458 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3fad445496ec76e988ece75158f2cb008cea3369;p=thirdparty%2Fhostap.git wlantest: Fix the cipher name in a BIP-GMAC-256 test vector Signed-off-by: Henry Ptasinski Signed-off-by: Andrew Pope Signed-off-by: David Goodall --- diff --git a/wlantest/test_vectors.c b/wlantest/test_vectors.c index f2517cb8c..3ee53ae24 100644 --- a/wlantest/test_vectors.c +++ b/wlantest/test_vectors.c @@ -906,7 +906,7 @@ static int test_vector_bip_gmac_256(void) wpa_hexdump(MSG_INFO, "Protected MPDU (without FCS)", prot, prot_len); if (prot_len != sizeof(res) || os_memcmp(res, prot, prot_len) != 0) { - wpa_printf(MSG_ERROR, "BIP-GMAC-128 test vector mismatch"); + wpa_printf(MSG_ERROR, "BIP-GMAC-256 test vector mismatch"); err++; } os_free(prot);