]> granicus.if.org Git - fcron/commitdiff
*** empty log message ***
authorthib <thib>
Sun, 29 Apr 2001 22:14:20 +0000 (22:14 +0000)
committerthib <thib>
Sun, 29 Apr 2001 22:14:20 +0000 (22:14 +0000)
fcron.c
fcrontab.c

diff --git a/fcron.c b/fcron.c
index a3548e22904194def65d30f5aacd7c50435ae9b7..65daccaf20eb7ef003bb195bb71e23b60df36d6d 100644 (file)
--- a/fcron.c
+++ b/fcron.c
  *  `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':
index 169f1390554592cf65dae2d0982d13e9f1f6b3ec..19e678b5f4039479f46ebc3b5ce1d3d5290e6d64 100644 (file)
@@ -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':