From: antirez Date: Thu, 2 Apr 2009 07:57:06 +0000 (+0200) Subject: Fixed issue 23 about AUTH X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/2e77c2ee72c97d33da568efcde3ec3dc954ccc13 Fixed issue 23 about AUTH --- diff --git a/redis.c b/redis.c index f9161615..0ea87cbd 100644 --- a/redis.c +++ b/redis.c @@ -2009,7 +2009,7 @@ eoferr: /* unexpected end of file is handled here with a fatal exit */ /*================================== Commands =============================== */ static void authCommand(redisClient *c) { - if (!strcmp(c->argv[1]->ptr, server.requirepass)) { + if (!server.requirepass || !strcmp(c->argv[1]->ptr, server.requirepass)) { c->authenticated = 1; addReply(c,shared.ok); } else {