From: Thibault Godouet Date: Wed, 30 Aug 2000 09:09:07 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: ver2_9_4~614 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d16387756d14c4b8ae4fca403246c776223b7c46;p=thirdparty%2Ffcron.git *** empty log message *** --- diff --git a/Makefile.in b/Makefile.in index 735d6b7..f32d986 100644 --- a/Makefile.in +++ b/Makefile.in @@ -2,7 +2,7 @@ # fcron's Makefile ######## ############################ -# $Id: Makefile.in,v 1.24 2000-08-28 18:00:24 thib Exp $ +# $Id: Makefile.in,v 1.25 2000-08-30 09:09:15 thib Exp $ # ********************************************************* # # *** Begin of configurable stuffs ************************ # @@ -26,7 +26,7 @@ ETC=/etc/ # -DDEBUG even more verbose # -DCHECKJOBS send a mail containing the exact shell command # for each execution of each job. -OPTIM= -DDEBUG -g -DFOREGROUND +OPTIM= -DDEBUG -g -DFOREGROUND -DMALLOC_CHECK_=2 #OPTIM= -DDEBUG -g -DCHECKJOBS -Wall -Wpointer-arith -Wstrict-prototypes #OPTIM= -DDEBUG -Wall -Wpointer-arith -Wstrict-prototypes #OPTIM= -O2 -Wall @@ -67,8 +67,8 @@ VERSION= 0.9.1 CFLAGS= $(INCLUDE) $(OPTIM) $(OTHERFLAGS) $(OPTION) -DVERSION=\"$(VERSION)\" -DFCRONTABS=\"$(FCRONTABS)\" -DETC=\"$(ETC)\" OBJSD = fcron.o subs.o database.o job.o log.o conf.o OBJS= fcrontab.o fileconf.o subs.o log.o allow.c -HEADERSD = fcron.h config.h global.h Makefile option.h -HEADERS = fcrontab.h config.h global.h Makefile option.h +HEADERSD = fcron.h config.h global.h option.h +HEADERS = fcrontab.h config.h global.h option.h # this is two regular expressions RCSNOLOG=.*\(.html\|VERSION\|MANIFEST\) diff --git a/global.h b/global.h index 94e7677..162a96d 100644 --- a/global.h +++ b/global.h @@ -21,7 +21,7 @@ * `LICENSE' that comes with the fcron source distribution. */ - /* $Id: global.h,v 1.17 2000-08-28 17:59:40 thib Exp $ */ + /* $Id: global.h,v 1.18 2000-08-30 09:09:07 thib Exp $ */ /* @@ -117,7 +117,7 @@ typedef struct job { typedef struct lavg { struct CL *l_line; - time_t l_since; /* the time of the line admission in the queue */ + time_t l_until; /* the timeout of the wait for load averages */ } lavg; #endif /* __GLOBALH__ */