not used parameter for redisLog() removed. Error message grammar fixed.

Thanks to @ardsrk.
This commit is contained in:
antirez 2011-10-08 10:58:57 +02:00
parent d38ef52085
commit ff15dba093

View File

@ -52,7 +52,7 @@ int startAppendOnly(void) {
if (rewriteAppendOnlyFileBackground() == REDIS_ERR) {
server.appendonly = 0;
close(server.appendfd);
redisLog(REDIS_WARNING,"Used tried to switch on AOF via CONFIG, I can't trigger a background AOF rewrite operation. Check the above logs for more info about the error.",strerror(errno));
redisLog(REDIS_WARNING,"User tried turning on AOF with CONFIG SET but I can't trigger a background AOF rewrite operation. Check the above logs for more info about the error.");
return REDIS_ERR;
}
return REDIS_OK;