From: Thibault Godouet Date: Sat, 26 Feb 2005 15:09:25 +0000 (+0000) Subject: minor bug fix : replaced a #elif without condition by a #else X-Git-Tag: ver2_9_6~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f3ed96ec182ceb5c8fabbca0464f23574bf3e69;p=thirdparty%2Ffcron.git minor bug fix : replaced a #elif without condition by a #else --- diff --git a/job.c b/job.c index 88f82ac..9419312 100644 --- a/job.c +++ b/job.c @@ -22,7 +22,7 @@ * `LICENSE' that comes with the fcron source distribution. */ - /* $Id: job.c,v 1.61 2004-08-12 09:27:04 thib Exp $ */ + /* $Id: job.c,v 1.62 2005-02-26 15:09:25 thib Exp $ */ #include "fcron.h" @@ -323,7 +323,7 @@ run_job(struct exe_t *exeent) #ifdef HAVE_SETLINEBUF setlinebuf(stdout); setlinebuf(stderr); -#elif +#else setvbuf(stdout, NULL, _IONBF, 0); setvbuf(stderr, NULL, _IONBF, 0); #endif