1
0
mirror of https://github.com/fluencelabs/redis synced 2025-03-31 14:51:04 +00:00

Grammar fix in freeClient().

This commit is contained in:
antirez 2013-12-03 13:40:41 +01:00
parent f80cf7363a
commit e4025ea926

@ -698,7 +698,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);