Better DEBUG error message when num of arguments is wrong.

This commit is contained in:
antirez 2013-03-28 11:39:02 +01:00
parent 1b13adf388
commit 3816e7bda9

View File

@ -338,7 +338,7 @@ void debugCommand(redisClient *c) {
server.active_expire_enabled = atoi(c->argv[2]->ptr); server.active_expire_enabled = atoi(c->argv[2]->ptr);
addReply(c,shared.ok); addReply(c,shared.ok);
} else { } else {
addReplyErrorFormat(c, "Unknown DEBUG subcommand '%s'", addReplyErrorFormat(c, "Unknown DEBUG subcommand or wrong number of arguments for '%s'",
(char*)c->argv[1]->ptr); (char*)c->argv[1]->ptr);
} }
} }