]> granicus.if.org Git - fcron/commitdiff
*** empty log message ***
authorthib <thib>
Tue, 15 May 2001 00:44:51 +0000 (00:44 +0000)
committerthib <thib>
Tue, 15 May 2001 00:44:51 +0000 (00:44 +0000)
configure.in
fcron.c
fcron.h
fcrontab.h
global.h

index 7dda50c1ffa2fe51015a20a98f8d6b8a80db20dd..2c359a53de156d1883e56e9364b763d461b17090 100644 (file)
@@ -8,7 +8,7 @@ AC_PREFIX_DEFAULT($prefix)
 AC_CONFIG_HEADER(config.h)
 AC_PREREQ(2.7)
 
-vers="1.1.0"
+vers="1.1.1"
 vers_quoted="\"$vers\""
 AC_DEFINE_UNQUOTED(VERSION, $vers)
 AC_DEFINE_UNQUOTED(VERSION_QUOTED, $vers_quoted)
diff --git a/fcron.c b/fcron.c
index 65daccaf20eb7ef003bb195bb71e23b60df36d6d..030af86d9fb49ca556382d0cbbc9116820fae4a4 100644 (file)
--- a/fcron.c
+++ b/fcron.c
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: fcron.c,v 1.43 2001-04-29 22:15:28 thib Exp $ */
+ /* $Id: fcron.c,v 1.44 2001-05-15 00:45:09 thib Exp $ */
 
 #include "fcron.h"
 
-char rcs_info[] = "$Id: fcron.c,v 1.43 2001-04-29 22:15:28 thib Exp $";
+char rcs_info[] = "$Id: fcron.c,v 1.44 2001-05-15 00:45:09 thib Exp $";
 
 void main_loop(void);
 void check_signal(void);
@@ -52,7 +52,6 @@ char foreground = 1; /* set to 1 when we are on foreground, else 0 */
 char foreground = 0; /* set to 1 when we are on foreground, else 0 */
 #endif
 
-char  *cdir = FCRONTABS;      /* the dir where are stored users' fcrontabs */
 time_t save_time = SAVE;
 
 /* process identity */
@@ -371,7 +370,7 @@ main(int argc, char **argv)
 
     /* change directory */
 
-    if (chdir(cdir) != 0)
+    if (chdir(FCRONTABS) != 0)
        die_e("Could not change dir to " FCRONTABS);
     
 
diff --git a/fcron.h b/fcron.h
index 2f33bfb69257660760234163fae15c08e75d4bfe..af207b6fa55b57a8917c3a0e0c2ea656242dc26d 100644 (file)
--- a/fcron.h
+++ b/fcron.h
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: fcron.h,v 1.20 2001-04-29 22:15:38 thib Exp $ */
+ /* $Id: fcron.h,v 1.21 2001-05-15 00:45:16 thib Exp $ */
 
-#ifndef __FCRONH__
-#define __FCRONH__
+#ifndef __FCRON_H__
+#define __FCRON_H__
 
 #include "global.h"
 
@@ -91,5 +91,5 @@ extern void xexit(int exit_value);
 #include "conf.h"
 #include "job.h"
 
-#endif /* __FCRONH */
+#endif /* __FCRON_H */
 
index e8a61c882372da031ece97fbb866f03666817d4a..ba81f30b4553622ec60f9747df60f526881d92c5 100644 (file)
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: fcrontab.h,v 1.7 2001-04-29 22:14:29 thib Exp $ */
+ /* $Id: fcrontab.h,v 1.8 2001-05-15 00:44:51 thib Exp $ */
 
-#ifndef __FCRONTABH__
-#define __FCRONTABH__
+#ifndef __FCRONTAB_H__
+#define __FCRONTAB_H__
 
 #include "global.h"
 
@@ -40,13 +40,9 @@ extern CF *file_base;
 
 /* prototype definition */
 
-/* fileconf.c */
-extern int read_file(char *filename, char *user);
-extern void delete_file(const char *user_name);
-extern int save_file(char *path);
-
 #include "log.h"
 #include "subs.h"
 #include "allow.h"
+#include "fileconf.h"
 
-#endif /* __FCRONTABH__ */
+#endif /* __FCRONTAB_H__ */
index 03206c7f16e3e292868a6fdfe91a008362471dfc..917070e3d71f830454deb17864659f4504222292 100644 (file)
--- a/global.h
+++ b/global.h
@@ -21,7 +21,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: global.h,v 1.24 2001-04-21 08:47:26 thib Exp $ */
+ /* $Id: global.h,v 1.25 2001-05-15 00:45:55 thib Exp $ */
 
 
 /* 
@@ -29,8 +29,8 @@
    Compilation's options are in config.h
 */
 
-#ifndef __GLOBALH__
-#define __GLOBALH__
+#ifndef __GLOBAL_H__
+#define __GLOBAL_H__
 
 /* config.h must be included before every other includes 
  * (contains the compilation options) */
 #define ERR     -1           
 #define OK       0
 
+/* options for local functions */
+#define STD 0
 
 /* macros */
 #define Alloc(ptr, type) \
@@ -170,5 +172,5 @@ typedef struct exe {
     pid_t       e_pid;
 } exe;
 
-#endif /* __GLOBALH__ */
+#endif /* __GLOBAL_H__ */