summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2013-01-11 18:50:40 +0100
committerantirez <antirez@gmail.com>2013-01-15 13:34:35 +0100
commit1b2ac3b206e97e265c89351e095e7fabe674a506 (patch)
tree79fe2713d42a4810e90afc42e93601e602c1dadf
parentc5f23ca79bf203c021fdd32d531487d9d15ab3b8 (diff)
downloadredis-1b2ac3b206e97e265c89351e095e7fabe674a506.tar.gz
Typo fixed, ASCI -> ASCII.
-rw-r--r--src/networking.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/networking.c b/src/networking.c
index d935eaa82..3448ea8de 100644
--- a/src/networking.c
+++ b/src/networking.c
@@ -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.");