1
0
mirror of https://github.com/fluencelabs/redis synced 2025-04-03 00:01:04 +00:00

Fixed compilation on Linux

This commit is contained in:
antirez 2009-10-31 14:32:01 +01:00
parent 4e141d5a21
commit 71eba4775d

@ -1104,7 +1104,7 @@ static void initServer() {
aeCreateTimeEvent(server.el, 1000, serverCron, NULL, NULL); aeCreateTimeEvent(server.el, 1000, serverCron, NULL, NULL);
if (server.appendonly) { if (server.appendonly) {
server.appendfd = open(server.appendfilename,O_WRONLY|O_APPEND|O_CREAT); server.appendfd = open(server.appendfilename,O_WRONLY|O_APPEND|O_CREAT,0644);
if (server.appendfd == -1) { if (server.appendfd == -1) {
redisLog(REDIS_WARNING, "Can't open the append-only file: %s", redisLog(REDIS_WARNING, "Can't open the append-only file: %s",
strerror(errno)); strerror(errno));
@ -1725,7 +1725,7 @@ static void feedAppendOnlyFile(struct redisCommand *cmd, int dictid, robj **argv
* there is much to do about the whole server stopping for power problems * there is much to do about the whole server stopping for power problems
* or alike */ * or alike */
nwritten = write(server.appendfd,buf,sdslen(buf)); nwritten = write(server.appendfd,buf,sdslen(buf));
if (nwritten != (unsigned)sdslen(buf)) { if (nwritten != (signed)sdslen(buf)) {
/* Ooops, we are in troubles. The best thing to do for now is /* Ooops, we are in troubles. The best thing to do for now is
* to simply exit instead to give the illusion that everything is * to simply exit instead to give the illusion that everything is
* working as expected. */ * working as expected. */