Commit 1b2ac3b2 authored by antirez's avatar antirez
Browse files

Typo fixed, ASCI -> ASCII.

parent c5f23ca7
...@@ -1211,7 +1211,7 @@ void clientCommand(redisClient *c) { ...@@ -1211,7 +1211,7 @@ void clientCommand(redisClient *c) {
* CLIENT LIST format will break. You should always be able to * CLIENT LIST format will break. You should always be able to
* split by space to get the different fields. */ * split by space to get the different fields. */
for (j = 0; j < len; j++) { for (j = 0; j < len; j++) {
if (p[j] < '!' || p[j] > '~') { /* ASCI is assumed. */ if (p[j] < '!' || p[j] > '~') { /* ASCII is assumed. */
addReplyError(c, addReplyError(c,
"Client names cannot contain spaces, " "Client names cannot contain spaces, "
"newlines or special characters."); "newlines or special characters.");
......
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