Removed double semicolon at the end of line (#10305)
This commit is contained in:
parent
3881f7850f
commit
cca3577503
@ -627,7 +627,7 @@ void aofUpgradePrepare(aofManifest *am) {
|
||||
server.aof_dirname,
|
||||
strerror(errno));
|
||||
sdsfree(aof_filepath);
|
||||
exit(1);;
|
||||
exit(1);
|
||||
}
|
||||
sdsfree(aof_filepath);
|
||||
|
||||
|
@ -921,7 +921,7 @@ NULL
|
||||
addReplyStatus(c,"Apparently Redis did not crash: test passed");
|
||||
} 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);
|
||||
} else if (!strcasecmp(c->argv[1]->ptr,"config-rewrite-force-all") && c->argc == 2)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user