Unverified Commit cca35775 authored by Matteo Baccan's avatar Matteo Baccan Committed by GitHub
Browse files

Removed double semicolon at the end of line (#10305)

parent 3881f785
...@@ -627,7 +627,7 @@ void aofUpgradePrepare(aofManifest *am) { ...@@ -627,7 +627,7 @@ void aofUpgradePrepare(aofManifest *am) {
server.aof_dirname, server.aof_dirname,
strerror(errno)); strerror(errno));
sdsfree(aof_filepath); sdsfree(aof_filepath);
exit(1);; exit(1);
} }
sdsfree(aof_filepath); sdsfree(aof_filepath);
......
...@@ -921,7 +921,7 @@ NULL ...@@ -921,7 +921,7 @@ NULL
addReplyStatus(c,"Apparently Redis did not crash: test passed"); addReplyStatus(c,"Apparently Redis did not crash: test passed");
} else if (!strcasecmp(c->argv[1]->ptr,"set-disable-deny-scripts") && c->argc == 3) } else if (!strcasecmp(c->argv[1]->ptr,"set-disable-deny-scripts") && c->argc == 3)
{ {
server.script_disable_deny_script = atoi(c->argv[2]->ptr);; server.script_disable_deny_script = atoi(c->argv[2]->ptr);
addReply(c,shared.ok); addReply(c,shared.ok);
} else if (!strcasecmp(c->argv[1]->ptr,"config-rewrite-force-all") && c->argc == 2) } else if (!strcasecmp(c->argv[1]->ptr,"config-rewrite-force-all") && c->argc == 2)
{ {
......
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