summaryrefslogtreecommitdiff
path: root/ssl.c
diff options
context:
space:
mode:
authorMark Nunberg <mnunberg@users.noreply.github.com>2019-09-16 10:43:53 -0400
committerGitHub <noreply@github.com>2019-09-16 10:43:53 -0400
commit01535274441bf235dc17ace1343515755a6049ed (patch)
treea08c1906dd00a409e0cd85f3b9827d4b9e943d13 /ssl.c
parentbd2c8fedf75f4e60225dfd6c735068a88666839a (diff)
parentd952ed877ab1e515fcf5d16ec69576b87be61796 (diff)
Merge pull request #711 from yossigo/ssl-tests
SSL Tests
Diffstat (limited to 'ssl.c')
-rw-r--r--ssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl.c b/ssl.c
index 418ece6..78ab9e4 100644
--- a/ssl.c
+++ b/ssl.c
@@ -337,7 +337,7 @@ static int redisSSLRead(redisContext *c, char *buf, size_t bufcap) {
} else {
const char *msg = NULL;
if (errno == EAGAIN) {
- msg = "Timed out";
+ msg = "Resource temporarily unavailable";
}
__redisSetError(c, REDIS_ERR_IO, msg);
return -1;