]> granicus.if.org Git - fcron/commitdiff
*** empty log message ***
authorthib <thib>
Sun, 18 Jun 2000 13:12:17 +0000 (13:12 +0000)
committerthib <thib>
Sun, 18 Jun 2000 13:12:17 +0000 (13:12 +0000)
Makefile.in
fcrontab.h

index 0e7983c50976733dba4566feaa62b8835e6dbfec..da1f36697a4bdbba89540bd6b1a6e7c2ec31d8e1 100644 (file)
@@ -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
index 5d6a164e89a41145d304c288656fd2f6b8849242..ad82b98d32f8ac721a27a3d93d0b493237ffbd10 100644 (file)
@@ -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 */