summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2013-12-03 13:40:41 +0100
committerantirez <antirez@gmail.com>2013-12-03 13:40:51 +0100
commit333453646c3b6e3b20af0223a68c04914a479f39 (patch)
tree495685ca383ae3270c9bda9d8aab267754f46115
parent4d650a3baa614364043db8947f73161ebf11eafb (diff)
downloadredis-333453646c3b6e3b20af0223a68c04914a479f39.tar.gz
Grammar fix in freeClient().
-rw-r--r--src/networking.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/networking.c b/src/networking.c
index 4233dd306..8be62b54a 100644
--- a/src/networking.c
+++ b/src/networking.c
@@ -685,7 +685,7 @@ void freeClient(redisClient *c) {
listDelNode(server.clients,ln);
}
/* When client was just unblocked because of a blocking operation,
- * remove it from the list with unblocked clients. */
+ * remove it from the list of unblocked clients. */
if (c->flags & REDIS_UNBLOCKED) {
ln = listSearchKey(server.unblocked_clients,c);
redisAssert(ln != NULL);