mirror of
https://github.com/fluencelabs/redis
synced 2025-04-04 00:31:03 +00:00
Fixed issue 23 about AUTH
This commit is contained in:
parent
774e304780
commit
2e77c2ee72
2
redis.c
2
redis.c
@ -2009,7 +2009,7 @@ eoferr: /* unexpected end of file is handled here with a fatal exit */
|
|||||||
/*================================== Commands =============================== */
|
/*================================== Commands =============================== */
|
||||||
|
|
||||||
static void authCommand(redisClient *c) {
|
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;
|
c->authenticated = 1;
|
||||||
addReply(c,shared.ok);
|
addReply(c,shared.ok);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user