From: Denis Vlasenko Date: Tue, 9 Jan 2007 23:39:48 +0000 (-0000) Subject: compilation fix by Bernhard Fischer X-Git-Tag: 1_4_0~63 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=db1edde6d878a0cdbb5a5a02032aa75e0b5f2d0f;p=oweals%2Fbusybox.git compilation fix by Bernhard Fischer --- diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c index 01120757b..41d7c9656 100644 --- a/sysklogd/syslogd.c +++ b/sysklogd/syslogd.c @@ -290,7 +290,9 @@ static void log_locally(char *msg) goto reopen; } } else { +#if ENABLE_FEATURE_ROTATE_LOGFILE struct stat statf; +#endif reopen: logFD = device_open(logFilePath, O_WRONLY | O_CREAT | O_NOCTTY | O_APPEND | O_NONBLOCK); @@ -340,8 +342,9 @@ static void log_locally(char *msg) } ftruncate(logFD, 0); } + curFileSize += #endif - curFileSize += full_write(logFD, msg, len); + full_write(logFD, msg, len); fl.l_type = F_UNLCK; fcntl(logFD, F_SETLKW, &fl); }