From: Thibault Godouet Date: Mon, 25 Feb 2002 18:45:06 +0000 (+0000) Subject: added fcron's option -y X-Git-Tag: ver2_9_4~187 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4ba31624f1493941bbcfdf3c1d71dab0dfc6a44;p=thirdparty%2Ffcron.git added fcron's option -y --- diff --git a/convert-fcrontab.c b/convert-fcrontab.c index 06b1e47..818fb54 100644 --- a/convert-fcrontab.c +++ b/convert-fcrontab.c @@ -22,7 +22,7 @@ * `LICENSE' that comes with the fcron source distribution. */ - /* $Id: convert-fcrontab.c,v 1.9 2001-12-23 22:05:07 thib Exp $ */ + /* $Id: convert-fcrontab.c,v 1.10 2002-02-25 18:45:06 thib Exp $ */ #include "global.h" @@ -30,7 +30,7 @@ #include "log.h" #include "subs.h" -char rcs_info[] = "$Id: convert-fcrontab.c,v 1.9 2001-12-23 22:05:07 thib Exp $"; +char rcs_info[] = "$Id: convert-fcrontab.c,v 1.10 2002-02-25 18:45:06 thib Exp $"; void info(void); void usage(void); @@ -45,9 +45,7 @@ char *prog_name = NULL; char foreground = 1; pid_t daemon_pid = 0; char debug_opt = 0; - -/* used in temp_file() (so needed by subs.c) */ -char *tmp_path = "/tmp/"; +char dosyslog = 1; void info(void)