Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
33345364
Commit
33345364
authored
Dec 03, 2013
by
antirez
Browse files
Grammar fix in freeClient().
parent
4d650a3b
Changes
1
Show whitespace changes
Inline
Side-by-side
src/networking.c
View file @
33345364
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment