]> granicus.if.org Git - fcron/commitdiff
changed name : update_file() is now convert_file()
authorthib <thib>
Sat, 5 May 2001 19:08:51 +0000 (19:08 +0000)
committerthib <thib>
Sat, 5 May 2001 19:08:51 +0000 (19:08 +0000)
added a small explain message

convert-fcrontab.c

index 93d71b14f679bd97909b848f8d31b1215471c03b..5d6e66f9ba0d2be971836d9d6fe30f1fced6e946 100644 (file)
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: convert-fcrontab.c,v 1.2 2001-04-30 03:02:28 thib Exp $ */
+ /* $Id: convert-fcrontab.c,v 1.3 2001-05-05 19:08:51 thib Exp $ */
 
 
 #include "convert-fcrontab.h"
 
-char rcs_info[] = "$Id: convert-fcrontab.c,v 1.2 2001-04-30 03:02:28 thib Exp $";
+char rcs_info[] = "$Id: convert-fcrontab.c,v 1.3 2001-05-05 19:08:51 thib Exp $";
 
 void info(void);
 void usage(void);
-void update_file(char *file_name);
+void convert_file(char *file_name);
 char *read_str(FILE *f, char *buf, int max);
 void delete_file(CF *file);
 
@@ -172,7 +172,7 @@ delete_file(CF *file)
         }
 
 void
-update_file(char *file_name)
+convert_file(char *file_name)
 /* this functions is a mix of read_file() from version 1.0.3 and save_file(),
  * so you can read more comments there */
 {
@@ -184,6 +184,8 @@ update_file(char *file_name)
     char buf[LINE_LEN];
     time_t t_save = 0;
 
+    explain("Converting %s's fcrontab ...", file_name);
+
     Alloc(file, CF);
     /* open file */
     if ( (f = fopen(file_name, "r")) == NULL )
@@ -364,7 +366,7 @@ main(int argc, char *argv[])
     if (chdir(cdir) != 0)
        die_e("Could not change dir to " FCRONTABS);
 
-    update_file(user_to_update);
+    convert_file(user_to_update);
 
     exit(EXIT_OK);