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>2022-11-12 14:06:24 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2022-11-13 12:29:12 +0300
commit7b4861fc8e282843624ae1e34c2353151a73696f (patch)
tree568bc3bf7dbff7500cf95aba4e7e7fb4ba41e4a5 /redis.c
parentcf63e96ec5f6c9363bc5c6955d29c726fc7ec6fe (diff)
[WIP] Refactor commandissue-2068-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 2aef973d..d90a0689 100644
--- a/redis.c
+++ b/redis.c
@@ -3077,7 +3077,7 @@ PHP_METHOD(Redis, rawcommand) {
* proto array Redis::command('info', string cmd)
* proto array Redis::command('getkeys', array cmd_args) */
PHP_METHOD(Redis, command) {
- REDIS_PROCESS_CMD(command, redis_read_variant_reply);
+ REDIS_PROCESS_CMD(command, redis_command_response);
}
/* }}} */