summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authorChris Lamb <chris@chris-lamb.co.uk>2022-06-15 11:37:39 +0100
committerGitHub <noreply@github.com>2022-06-15 13:37:39 +0300
commita4754e228fda51e4fd136d6e728eb1fc1923e5df (patch)
treeafdfd831f9b3e209d1a7a09e22695fe35fa03675 /deps
parent2189100383ca06f8c8f163b340a265d018d9ebe9 (diff)
downloadredis-a4754e228fda51e4fd136d6e728eb1fc1923e5df.tar.gz
Correct 'certificate' typo. (#10867)
Diffstat (limited to 'deps')
-rw-r--r--deps/hiredis/hiredis_ssl.h2
-rw-r--r--deps/hiredis/ssl.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/deps/hiredis/hiredis_ssl.h b/deps/hiredis/hiredis_ssl.h
index e3d3e1cf5..50fb77cd8 100644
--- a/deps/hiredis/hiredis_ssl.h
+++ b/deps/hiredis/hiredis_ssl.h
@@ -57,7 +57,7 @@ typedef enum {
REDIS_SSL_CTX_CA_CERT_LOAD_FAILED, /* Failed to load CA Certificate or CA Path */
REDIS_SSL_CTX_CLIENT_CERT_LOAD_FAILED, /* Failed to load client certificate */
REDIS_SSL_CTX_PRIVATE_KEY_LOAD_FAILED, /* Failed to load private key */
- REDIS_SSL_CTX_OS_CERTSTORE_OPEN_FAILED, /* Failed to open system certifcate store */
+ REDIS_SSL_CTX_OS_CERTSTORE_OPEN_FAILED, /* Failed to open system certificate store */
REDIS_SSL_CTX_OS_CERT_ADD_FAILED /* Failed to add CA certificates obtained from system to the SSL context */
} redisSSLContextError;
diff --git a/deps/hiredis/ssl.c b/deps/hiredis/ssl.c
index a709ea7cc..c10af7c54 100644
--- a/deps/hiredis/ssl.c
+++ b/deps/hiredis/ssl.c
@@ -184,7 +184,7 @@ const char *redisSSLContextGetError(redisSSLContextError error)
case REDIS_SSL_CTX_PRIVATE_KEY_LOAD_FAILED:
return "Failed to load private key";
case REDIS_SSL_CTX_OS_CERTSTORE_OPEN_FAILED:
- return "Failed to open system certifcate store";
+ return "Failed to open system certificate store";
case REDIS_SSL_CTX_OS_CERT_ADD_FAILED:
return "Failed to add CA certificates obtained from system to the SSL context";
default: