Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
aadcda99
Commit
aadcda99
authored
Jan 19, 2013
by
bitterb
Committed by
antirez
Jan 19, 2013
Browse files
Fix an error reply for CLIENT command
parent
f2bc198d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/networking.c
View file @
aadcda99
...
@@ -1228,7 +1228,7 @@ void clientCommand(redisClient *c) {
...
@@ -1228,7 +1228,7 @@ void clientCommand(redisClient *c) {
else
else
addReply
(
c
,
shared
.
nullbulk
);
addReply
(
c
,
shared
.
nullbulk
);
}
else
{
}
else
{
addReplyError
(
c
,
"Syntax error, try CLIENT (LIST | KILL ip:port)"
);
addReplyError
(
c
,
"Syntax error, try CLIENT (LIST | KILL ip:port
| GETNAME | SETNAME connection-name
)"
);
}
}
}
}
...
...
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