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-12-30 17:50:39 +0400
committerNicolas Favre-Felix <n.favrefelix@gmail.com>2011-12-30 17:50:39 +0400
commit1a1a81bf62603fe0813b2697e06da84dc267be93 (patch)
tree403fe23e8cc397d6f7133d895c5bffc9645a907a /php_redis.h
parent45f41a4bd3dff84a2616fd664e3eee196bea7b2e (diff)
Fixed issue with HDEL in serialize mode.
Addresses GitHub issue #114. Fixed unit test as well.
Diffstat (limited to 'php_redis.h')
-rwxr-xr-xphp_redis.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/php_redis.h b/php_redis.h
index 2367dc7c..f851a433 100755
--- a/php_redis.h
+++ b/php_redis.h
@@ -174,7 +174,7 @@ PHP_MINFO_FUNCTION(redis);
PHPAPI int redis_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent);
PHPAPI void redis_atomic_increment(INTERNAL_FUNCTION_PARAMETERS, char *keyword, int count);
PHPAPI int generic_multiple_args_cmd(INTERNAL_FUNCTION_PARAMETERS, char *keyword, int keyword_len,
- int min_argc, RedisSock **redis_sock, int has_timeout, int all_keys);
+ int min_argc, RedisSock **redis_sock, int has_timeout, int all_keys, int can_serialize);
PHPAPI void generic_sort_cmd(INTERNAL_FUNCTION_PARAMETERS, char *sort, int use_alpha);
PHPAPI void generic_empty_cmd(INTERNAL_FUNCTION_PARAMETERS, char *cmd, int cmd_len, ...);
PHPAPI void generic_empty_long_cmd(INTERNAL_FUNCTION_PARAMETERS, char *cmd, int cmd_len, ...);