File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ typedef enum {
57
57
REDIS_SSL_CTX_CA_CERT_LOAD_FAILED , /* Failed to load CA Certificate or CA Path */
58
58
REDIS_SSL_CTX_CLIENT_CERT_LOAD_FAILED , /* Failed to load client certificate */
59
59
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 */
61
61
REDIS_SSL_CTX_OS_CERT_ADD_FAILED /* Failed to add CA certificates obtained from system to the SSL context */
62
62
} redisSSLContextError ;
63
63
Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ const char *redisSSLContextGetError(redisSSLContextError error)
184
184
case REDIS_SSL_CTX_PRIVATE_KEY_LOAD_FAILED :
185
185
return "Failed to load private key" ;
186
186
case REDIS_SSL_CTX_OS_CERTSTORE_OPEN_FAILED :
187
- return "Failed to open system certifcate store" ;
187
+ return "Failed to open system certificate store" ;
188
188
case REDIS_SSL_CTX_OS_CERT_ADD_FAILED :
189
189
return "Failed to add CA certificates obtained from system to the SSL context" ;
190
190
default :
You can’t perform that action at this time.
0 commit comments