diff options
author | MichaM <contact-micha+github@posteo.de> | 2021-04-14 23:45:05 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2021-04-22 03:16:35 +0200 |
commit | af9fb19a476911bf7ceabcf3b21923dd5bbd9ac6 (patch) | |
tree | 944364e734897afaf54fe39dce5f1fcee6d0c438 /crypto | |
parent | Add missing argname for keymgmt_gettable_params and keymgmt_settable_params p... (diff) | |
download | openssl-af9fb19a476911bf7ceabcf3b21923dd5bbd9ac6.tar.xz openssl-af9fb19a476911bf7ceabcf3b21923dd5bbd9ac6.zip |
Fix typos
CLA: trivial
Signed-off-by: MichaM <contact-micha+github@posteo.de>
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14879)
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/err/openssl.txt | 4 | ||||
-rw-r--r-- | crypto/evp/evp_err.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/crypto/err/openssl.txt b/crypto/err/openssl.txt index 81f9f1ef49..517ebc0a01 100644 --- a/crypto/err/openssl.txt +++ b/crypto/err/openssl.txt @@ -668,8 +668,8 @@ EVP_R_EXPECTING_AN_HMAC_KEY:174:expecting an hmac key EVP_R_EXPECTING_AN_RSA_KEY:127:expecting an rsa key EVP_R_EXPECTING_A_DH_KEY:128:expecting a dh key EVP_R_EXPECTING_A_DSA_KEY:129:expecting a dsa key -EVP_R_EXPECTING_A_ECX_KEY:219:expecting a ecx key -EVP_R_EXPECTING_A_EC_KEY:142:expecting a ec key +EVP_R_EXPECTING_A_ECX_KEY:219:expecting an ecx key +EVP_R_EXPECTING_A_EC_KEY:142:expecting an ec key EVP_R_EXPECTING_A_POLY1305_KEY:164:expecting a poly1305 key EVP_R_EXPECTING_A_SIPHASH_KEY:175:expecting a siphash key EVP_R_FINAL_ERROR:188:final error diff --git a/crypto/evp/evp_err.c b/crypto/evp/evp_err.c index 850de00ca9..7fa3fbf400 100644 --- a/crypto/evp/evp_err.c +++ b/crypto/evp/evp_err.c @@ -65,8 +65,8 @@ static const ERR_STRING_DATA EVP_str_reasons[] = { {ERR_PACK(ERR_LIB_EVP, 0, EVP_R_EXPECTING_A_DSA_KEY), "expecting a dsa key"}, {ERR_PACK(ERR_LIB_EVP, 0, EVP_R_EXPECTING_A_ECX_KEY), - "expecting a ecx key"}, - {ERR_PACK(ERR_LIB_EVP, 0, EVP_R_EXPECTING_A_EC_KEY), "expecting a ec key"}, + "expecting an ecx key"}, + {ERR_PACK(ERR_LIB_EVP, 0, EVP_R_EXPECTING_A_EC_KEY), "expecting an ec key"}, {ERR_PACK(ERR_LIB_EVP, 0, EVP_R_EXPECTING_A_POLY1305_KEY), "expecting a poly1305 key"}, {ERR_PACK(ERR_LIB_EVP, 0, EVP_R_EXPECTING_A_SIPHASH_KEY), |