Skip to content

Commit a4754e2

Browse files
authored
Correct 'certificate' typo. (redis#10867)
1 parent 2189100 commit a4754e2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deps/hiredis/hiredis_ssl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ typedef enum {
5757
REDIS_SSL_CTX_CA_CERT_LOAD_FAILED, /* Failed to load CA Certificate or CA Path */
5858
REDIS_SSL_CTX_CLIENT_CERT_LOAD_FAILED, /* Failed to load client certificate */
5959
REDIS_SSL_CTX_PRIVATE_KEY_LOAD_FAILED, /* Failed to load private key */
60-
REDIS_SSL_CTX_OS_CERTSTORE_OPEN_FAILED, /* Failed to open system certifcate store */
60+
REDIS_SSL_CTX_OS_CERTSTORE_OPEN_FAILED, /* Failed to open system certificate store */
6161
REDIS_SSL_CTX_OS_CERT_ADD_FAILED /* Failed to add CA certificates obtained from system to the SSL context */
6262
} redisSSLContextError;
6363

deps/hiredis/ssl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ const char *redisSSLContextGetError(redisSSLContextError error)
184184
case REDIS_SSL_CTX_PRIVATE_KEY_LOAD_FAILED:
185185
return "Failed to load private key";
186186
case REDIS_SSL_CTX_OS_CERTSTORE_OPEN_FAILED:
187-
return "Failed to open system certifcate store";
187+
return "Failed to open system certificate store";
188188
case REDIS_SSL_CTX_OS_CERT_ADD_FAILED:
189189
return "Failed to add CA certificates obtained from system to the SSL context";
190190
default:

0 commit comments

Comments
 (0)