]> granicus.if.org Git - fcron/commitdiff
boolean option can be set using "yes" and "no"
authorthib <thib>
Sat, 10 Mar 2001 13:10:23 +0000 (13:10 +0000)
committerthib <thib>
Sat, 10 Mar 2001 13:10:23 +0000 (13:10 +0000)
fileconf.c

index 7063d5e060d1777ab13a9be3b7dda4f87f36fbb0..229218a4c77d8c7728d3208281d2410bf5284d30 100644 (file)
@@ -22,7 +22,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: fileconf.c,v 1.41 2001-03-01 18:40:47 thib Exp $ */
+ /* $Id: fileconf.c,v 1.42 2001-03-10 13:10:23 thib Exp $ */
 
 #include "fcrontab.h"
 
@@ -406,10 +406,18 @@ get_bool(char *ptr, int *i)
        ptr += 3;
        goto true;
     }
+    else if ( strncmp(ptr, "yes", 3) == 0 ) {
+       ptr += 2;
+       goto true;
+    }
     else if ( strncmp(ptr, "false", 5) == 0 ) {
        ptr += 4;
        goto false;
     }
+    else if ( strncmp(ptr, "no", 2) == 0 ) {
+       ptr += 1;
+       goto false;
+    }
     else
        return NULL;