Commit 33345364 authored by antirez's avatar antirez
Browse files

Grammar fix in freeClient().

parent 4d650a3b
...@@ -685,7 +685,7 @@ void freeClient(redisClient *c) { ...@@ -685,7 +685,7 @@ void freeClient(redisClient *c) {
listDelNode(server.clients,ln); listDelNode(server.clients,ln);
} }
/* When client was just unblocked because of a blocking operation, /* 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) { if (c->flags & REDIS_UNBLOCKED) {
ln = listSearchKey(server.unblocked_clients,c); ln = listSearchKey(server.unblocked_clients,c);
redisAssert(ln != NULL); redisAssert(ln != NULL);
......
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