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
723b4a15
Unverified
Commit
723b4a15
authored
Dec 24, 2020
by
xhe
Committed by
GitHub
Dec 24, 2020
Browse files
simplify
Co-authored-by:
Oran Agra
<
oran@redislabs.com
>
parent
c07d3bd8
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/networking.c
View file @
723b4a15
...
@@ -2763,7 +2763,7 @@ void helloCommand(client *c) {
...
@@ -2763,7 +2763,7 @@ void helloCommand(client *c) {
long long ver = 0;
long long ver = 0;
int next_arg = 1;
int next_arg = 1;
if (c->argc >= 2 && getLongLongFromObject(c->argv[
1
],&ver) == C_OK &&
if (c->argc >= 2 && getLongLongFromObject(c->argv[
next_arg++
],&ver) == C_OK &&
(ver < 2 || ver > 3)) {
(ver < 2 || ver > 3)) {
addReplyError(c,"-NOPROTO unsupported protocol version");
addReplyError(c,"-NOPROTO unsupported protocol version");
return;
return;
...
...
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