From: antirez Date: Tue, 12 Jul 2011 10:41:29 +0000 (+0200) Subject: Fix for a typo left after merging. X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/5f5461949427103c605859e381202fcf1d4ef0e4 Fix for a typo left after merging. --- diff --git a/src/config.c b/src/config.c index 5442e036..6f9657dd 100644 --- a/src/config.c +++ b/src/config.c @@ -657,6 +657,8 @@ void configGetCommand(redisClient *c) { if (stringmatch(pattern,"lua-time-limit",0)) { addReplyBulkCString(c,"lua-time-limit"); addReplyBulkLongLong(c,server.lua_time_limit); + matches++; + } if (stringmatch(pattern,"slowlog-log-slower-than",0)) { addReplyBulkCString(c,"slowlog-log-slower-than"); addReplyBulkLongLong(c,server.slowlog_log_slower_than);