mirror of
https://github.com/fluencelabs/redis
synced 2025-03-16 15:40:49 +00:00
Typo fixed, ASCI -> ASCII.
This commit is contained in:
parent
1971740f0c
commit
9b89ab06c4
@ -1211,7 +1211,7 @@ void clientCommand(redisClient *c) {
|
||||
* CLIENT LIST format will break. You should always be able to
|
||||
* split by space to get the different fields. */
|
||||
for (j = 0; j < len; j++) {
|
||||
if (p[j] < '!' || p[j] > '~') { /* ASCI is assumed. */
|
||||
if (p[j] < '!' || p[j] > '~') { /* ASCII is assumed. */
|
||||
addReplyError(c,
|
||||
"Client names cannot contain spaces, "
|
||||
"newlines or special characters.");
|
||||
|
Loading…
x
Reference in New Issue
Block a user