From 9b89ab06c46cbf72df3c0ac89118523faefe0c77 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 d935eaa8..3448ea8d 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.");