Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Favre-Felix <n.favrefelix@gmail.com>2011-07-18 00:49:42 +0400
committerNicolas Favre-Felix <n.favrefelix@gmail.com>2011-07-18 00:49:42 +0400
commit0987d08eaf8ad504eb584cf2511b947f536099c4 (patch)
treeae947ae042f3f02e60b2aadf7cdaa6ef55bd3c0d /library.c
parent906e462226cbc41baf417a531c6b6e1ed18d86ed (diff)
parentcf144ccad4834d003308971039bd312b2cf1deff (diff)
Merge pull request #13 from Mikushi/master
Fixing the "protocol error, got '*' as reply type byte"
Diffstat (limited to 'library.c')
-rw-r--r--library.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/library.c b/library.c
index 67d58a0e..9b4a17d9 100644
--- a/library.c
+++ b/library.c
@@ -152,6 +152,7 @@ PHPAPI char *redis_sock_read(RedisSock *redis_sock, int *buf_len TSRMLS_DC)
return resp;
case '+':
+ case '*':
case ':':
// Single Line Reply
/* :123\r\n */