Commit 2262dd18 authored by antirez's avatar antirez
Browse files

ACL: fix user/rule inverted error message.

parent 623b1742
......@@ -992,7 +992,7 @@ int ACLLoadConfiguredUsers(void) {
char *errmsg = ACLSetUserStringError();
serverLog(LL_WARNING,"Error loading ACL rule '%s' for "
"the user named '%s': %s",
aclrules[0],aclrules[j],errmsg);
aclrules[j],aclrules[0],errmsg);
return C_ERR;
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment