From: Thibault Godouet Date: Sun, 25 Jun 2000 20:00:13 +0000 (+0000) Subject: bug fixes : goto_non_matching X-Git-Tag: ver2_9_4~644 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a0aabeac249ac8df588d8462e0e83d20b12864f;p=thirdparty%2Ffcron.git bug fixes : goto_non_matching set_next_exe : big optimisation --- diff --git a/fcron.c b/fcron.c index bc3df52..1ebfc1f 100644 --- a/fcron.c +++ b/fcron.c @@ -21,11 +21,11 @@ * `LICENSE' that comes with the fcron source distribution. */ - /* $Id: fcron.c,v 1.21 2000-06-22 12:32:55 thib Exp $ */ + /* $Id: fcron.c,v 1.22 2000-06-25 20:00:13 thib Exp $ */ #include "fcron.h" -char rcs_info[] = "$Id: fcron.c,v 1.21 2000-06-22 12:32:55 thib Exp $"; +char rcs_info[] = "$Id: fcron.c,v 1.22 2000-06-25 20:00:13 thib Exp $"; void main_loop(void); void info(void); @@ -233,14 +233,14 @@ parseopt(int argc, char *argv[]) cdir = optarg; break; case ':': - error("(setopt) Missing parameter"); + error("(parseopt) Missing parameter"); usage(); case '?': usage(); default: - warn("(setopt) Warning: getopt returned %c", c); + warn("(parseopt) Warning: getopt returned %c", c); } }