From eb834970c4a1d73830fbbe3dd43b21ffd3efa0ed Mon Sep 17 00:00:00 2001 From: thib Date: Sun, 29 Apr 2001 22:14:20 +0000 Subject: [PATCH] *** empty log message *** --- fcron.c | 6 +++--- fcrontab.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/fcron.c b/fcron.c index a3548e2..65dacca 100644 --- a/fcron.c +++ b/fcron.c @@ -21,11 +21,11 @@ * `LICENSE' that comes with the fcron source distribution. */ - /* $Id: fcron.c,v 1.42 2001-04-21 08:46:20 thib Exp $ */ + /* $Id: fcron.c,v 1.43 2001-04-29 22:15:28 thib Exp $ */ #include "fcron.h" -char rcs_info[] = "$Id: fcron.c,v 1.42 2001-04-21 08:46:20 thib Exp $"; +char rcs_info[] = "$Id: fcron.c,v 1.43 2001-04-29 22:15:28 thib Exp $"; void main_loop(void); void check_signal(void); @@ -234,7 +234,7 @@ parseopt(int argc, char *argv[]) #else c = getopt(argc, argv, "dfbhVs:"); #endif /* HAVE_GETOPT_H */ - if (c == -1) break; + if (c == EOF) break; switch (c) { case 'V': diff --git a/fcrontab.c b/fcrontab.c index 169f139..19e678b 100644 --- a/fcrontab.c +++ b/fcrontab.c @@ -22,7 +22,7 @@ * `LICENSE' that comes with the fcron source distribution. */ - /* $Id: fcrontab.c,v 1.33 2001-04-21 08:43:35 thib Exp $ */ + /* $Id: fcrontab.c,v 1.34 2001-04-29 22:14:20 thib Exp $ */ /* * The goal of this program is simple : giving a user interface to fcron @@ -42,7 +42,7 @@ #include "fcrontab.h" -char rcs_info[] = "$Id: fcrontab.c,v 1.33 2001-04-21 08:43:35 thib Exp $"; +char rcs_info[] = "$Id: fcrontab.c,v 1.34 2001-04-29 22:14:20 thib Exp $"; void info(void); void usage(void); @@ -711,7 +711,7 @@ parseopt(int argc, char *argv[]) while(1) { c = getopt(argc, argv, "u:lrezdnhV"); - if (c == -1) break; + if (c == EOF) break; switch (c) { case 'V': -- 2.40.0