From: thib Date: Sun, 18 Jun 2000 13:12:17 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: ver1564~617 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9dfcc282ee274e871e910985508243a9a84f30a4;p=fcron *** empty log message *** --- diff --git a/Makefile.in b/Makefile.in index 0e7983c..da1f366 100644 --- a/Makefile.in +++ b/Makefile.in @@ -2,7 +2,7 @@ # fcron's Makefile ######## ############################ -# $Id: Makefile.in,v 1.15 2000-06-16 11:53:27 thib Exp $ +# $Id: Makefile.in,v 1.16 2000-06-18 13:13:52 thib Exp $ # ********************************************************* # # *** Begin of configurable stuffs ************************ # @@ -27,9 +27,9 @@ ETC=/etc/ # -DCHECKJOBS send a mail containing the exact shell command # for each execution of each job. #OPTIM= -DDEBUG -g -DFOREGROUND -#OPTIM= -DDEBUG -DCHECKJOBS -Wall -Wpointer-arith -Wstrict-prototypes +OPTIM= -DDEBUG -DCHECKJOBS -Wall -Wpointer-arith -Wstrict-prototypes #OPTIM= -DDEBUG -Wall -Wpointer-arith -Wstrict-prototypes -OPTIM= -O2 -Wall +#OPTIM= -O2 -Wall #OPTIM= -O3 -mcpu=i686 -Wall @@ -64,7 +64,7 @@ INSTALL= install # Should not be changed under this # #################################### -VERSION= 0.8.2 +VERSION= 0.8.3 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 diff --git a/fcrontab.h b/fcrontab.h index 5d6a164..ad82b98 100644 --- a/fcrontab.h +++ b/fcrontab.h @@ -21,7 +21,7 @@ * `LICENSE' that comes with the fcron source distribution. */ - /* $Id: fcrontab.h,v 1.3 2000-05-30 19:27:20 thib Exp $ */ + /* $Id: fcrontab.h,v 1.4 2000-06-18 13:12:17 thib Exp $ */ #ifndef __FCRONTABH__ #define __FCRONTABH__ @@ -32,7 +32,7 @@ /* macros */ #define Skip_blanks(ptr) \ while((*ptr == ' ') || (*ptr == '\t')) \ - ptr++; + ptr++; /* global variables */ extern char debug_opt; @@ -41,7 +41,7 @@ extern CF *file_base; /* prototype definition */ /* fileconf.c */ -extern int read_file(char *file_name, char *user); +extern int read_file(char *filename, char *user); extern void delete_file(const char *user_name); extern void save_file(char *path); /* end of fileconf.c */