Commit aacd4ccd authored by Yossi Gottlieb's avatar Yossi Gottlieb
Browse files

Fix typo.

parent 153b8f63
...@@ -165,7 +165,7 @@ int redisSslCreate(redisContext *c, const char *capath, const char *certpath, ...@@ -165,7 +165,7 @@ int redisSslCreate(redisContext *c, const char *capath, const char *certpath,
else { else {
unsigned long e = ERR_peek_last_error(); unsigned long e = ERR_peek_last_error();
snprintf(err,sizeof(err)-1,"SSL_connect failed: %s", snprintf(err,sizeof(err)-1,"SSL_connect failed: %s",
ERR_reason_error_String(e)); ERR_reason_error_string(e));
} }
__redisSetError(c, REDIS_ERR_IO, err); __redisSetError(c, REDIS_ERR_IO, err);
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment