Unverified Commit 723b4a15 authored by xhe's avatar xhe Committed by GitHub
Browse files

simplify


Co-authored-by: default avatarOran Agra <oran@redislabs.com>
parent c07d3bd8
...@@ -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;
......
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