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:
authorPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2021-04-08 08:53:36 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2021-04-10 21:26:29 +0300
commitb0b9dd78ef7c15af936144c1b17df1a9273d72ab (patch)
tree2632efff912ca0add7b184f1e74502f98e63eb35 /redis.c
parent8eed7c7d9c87a205c30359a6d918fc1a2170c58b (diff)
[WIP] Issue #1894
Add GET option to SET command
Diffstat (limited to 'redis.c')
-rw-r--r--redis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis.c b/redis.c
index 5d860401..b8a7221b 100644
--- a/redis.c
+++ b/redis.c
@@ -1152,7 +1152,7 @@ PHP_METHOD(Redis, close)
/* {{{ proto boolean Redis::set(string key, mixed val, long timeout,
* [array opt) */
PHP_METHOD(Redis, set) {
- REDIS_PROCESS_CMD(set, redis_boolean_response);
+ REDIS_PROCESS_CMD(set, redis_set_response);
}
/* {{{ proto boolean Redis::setex(string key, long expire, string value)