summaryrefslogtreecommitdiffstats
path: root/engines
diff options
context:
space:
mode:
authorDimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>2023-07-16 08:25:55 +0200
committerPauli <pauli@openssl.org>2023-07-18 18:54:45 +1000
commita024ab984e540bff65d25407496c34b3567b55a7 (patch)
tree926b3165cd52ea6abe176682d13fadb59cc0f224 /engines
parent4c4fefa5c78a49b63113aec35a2bc8d6d9432436 (diff)
Fix typos found by codespell
Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21467)
Diffstat (limited to 'engines')
-rw-r--r--engines/e_capi.txt8
-rw-r--r--engines/e_capi_err.c8
2 files changed, 8 insertions, 8 deletions
diff --git a/engines/e_capi.txt b/engines/e_capi.txt
index dc557eef98..dab3471be4 100644
--- a/engines/e_capi.txt
+++ b/engines/e_capi.txt
@@ -6,10 +6,10 @@
# https://www.openssl.org/source/license.html
#Reason codes
-CAPI_R_CANT_CREATE_HASH_OBJECT:100:cant create hash object
-CAPI_R_CANT_FIND_CAPI_CONTEXT:101:cant find capi context
-CAPI_R_CANT_GET_KEY:102:cant get key
-CAPI_R_CANT_SET_HASH_VALUE:103:cant set hash value
+CAPI_R_CANT_CREATE_HASH_OBJECT:100:can't create hash object
+CAPI_R_CANT_FIND_CAPI_CONTEXT:101:can't find capi context
+CAPI_R_CANT_GET_KEY:102:can't get key
+CAPI_R_CANT_SET_HASH_VALUE:103:can't set hash value
CAPI_R_CRYPTACQUIRECONTEXT_ERROR:104:cryptacquirecontext error
CAPI_R_CRYPTENUMPROVIDERS_ERROR:105:cryptenumproviders error
CAPI_R_DECRYPT_ERROR:106:decrypt error
diff --git a/engines/e_capi_err.c b/engines/e_capi_err.c
index 8c233f01fd..bf46485234 100644
--- a/engines/e_capi_err.c
+++ b/engines/e_capi_err.c
@@ -14,10 +14,10 @@
#ifndef OPENSSL_NO_ERR
static ERR_STRING_DATA CAPI_str_reasons[] = {
- {ERR_PACK(0, 0, CAPI_R_CANT_CREATE_HASH_OBJECT), "cant create hash object"},
- {ERR_PACK(0, 0, CAPI_R_CANT_FIND_CAPI_CONTEXT), "cant find capi context"},
- {ERR_PACK(0, 0, CAPI_R_CANT_GET_KEY), "cant get key"},
- {ERR_PACK(0, 0, CAPI_R_CANT_SET_HASH_VALUE), "cant set hash value"},
+ {ERR_PACK(0, 0, CAPI_R_CANT_CREATE_HASH_OBJECT), "can't create hash object"},
+ {ERR_PACK(0, 0, CAPI_R_CANT_FIND_CAPI_CONTEXT), "can't find capi context"},
+ {ERR_PACK(0, 0, CAPI_R_CANT_GET_KEY), "can't get key"},
+ {ERR_PACK(0, 0, CAPI_R_CANT_SET_HASH_VALUE), "can't set hash value"},
{ERR_PACK(0, 0, CAPI_R_CRYPTACQUIRECONTEXT_ERROR),
"cryptacquirecontext error"},
{ERR_PACK(0, 0, CAPI_R_CRYPTENUMPROVIDERS_ERROR),