From 7d11268b513a362cad8f580208a78e3ba7a9a2ad Mon Sep 17 00:00:00 2001 From: antirez Date: Fri, 11 Jan 2013 18:50:40 +0100 Subject: [PATCH] Typo fixed, ASCI -> ASCII. --- src/networking.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.");