mirror of
https://github.com/redis/redis.git
synced 2026-05-28 04:02:46 -04:00
typo fix in acl.c
This commit is contained in:
parent
8105f91a02
commit
66801ea38e
1 changed files with 1 additions and 1 deletions
|
|
@ -254,7 +254,7 @@ void ACLFreeUserAndKillClients(user *u) {
|
||||||
while ((ln = listNext(&li)) != NULL) {
|
while ((ln = listNext(&li)) != NULL) {
|
||||||
client *c = listNodeValue(ln);
|
client *c = listNodeValue(ln);
|
||||||
if (c->user == u) {
|
if (c->user == u) {
|
||||||
/* We'll free the conenction asynchronously, so
|
/* We'll free the connection asynchronously, so
|
||||||
* in theory to set a different user is not needed.
|
* in theory to set a different user is not needed.
|
||||||
* However if there are bugs in Redis, soon or later
|
* However if there are bugs in Redis, soon or later
|
||||||
* this may result in some security hole: it's much
|
* this may result in some security hole: it's much
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue