]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Fix typo in DigestAlgorithn
authorSergei Sinyak <serega.belarus@gmail.com>
Sat, 29 Oct 2016 07:53:31 +0000 (10:53 +0300)
committerJouni Malinen <j@w1.fi>
Sat, 29 Oct 2016 08:14:09 +0000 (11:14 +0300)
Replace n with m in DigestAlgorithn, i.e., DigestAlgorithm.

Signed-off-by: Sergei Sinyak <serega.belarus@gmail.com>
src/tls/tlsv1_common.c

index 6b28417e499c70680d7b64312c955ec12b202090..67b55dbe8324ce11d56668103638b16be34a712a 100644 (file)
@@ -482,21 +482,21 @@ int tls_verify_signature(u16 tls_version, struct crypto_public_key *pk,
                    os_memcmp(buf, "\x30\x31\x30\x0d\x06\x09\x60\x86\x48\x01"
                              "\x65\x03\x04\x02\x01\x05\x00\x04\x20", 19) == 0)
                {
-                       wpa_printf(MSG_DEBUG, "TLSv1.2: DigestAlgorithn = SHA-256");
+                       wpa_printf(MSG_DEBUG, "TLSv1.2: DigestAlgorithm = SHA-256");
                        decrypted = buf + 19;
                        buflen -= 19;
                } else if (buflen >= 19 + 48 &&
                    os_memcmp(buf, "\x30\x41\x30\x0d\x06\x09\x60\x86\x48\x01"
                              "\x65\x03\x04\x02\x02\x05\x00\x04\x30", 19) == 0)
                {
-                       wpa_printf(MSG_DEBUG, "TLSv1.2: DigestAlgorithn = SHA-384");
+                       wpa_printf(MSG_DEBUG, "TLSv1.2: DigestAlgorithm = SHA-384");
                        decrypted = buf + 19;
                        buflen -= 19;
                } else if (buflen >= 19 + 64 &&
                    os_memcmp(buf, "\x30\x51\x30\x0d\x06\x09\x60\x86\x48\x01"
                              "\x65\x03\x04\x02\x03\x05\x00\x04\x40", 19) == 0)
                {
-                       wpa_printf(MSG_DEBUG, "TLSv1.2: DigestAlgorithn = SHA-512");
+                       wpa_printf(MSG_DEBUG, "TLSv1.2: DigestAlgorithm = SHA-512");
                        decrypted = buf + 19;
                        buflen -= 19;