changeset 11425:bcb88697b70b

(main, skip_to_lf): Improve error handling. (sysfail): New function.
author Karl Heuer <kwzh@gnu.org>
date Thu, 13 Apr 1995 17:24:35 +0000
parents 29493ce2d1ca
children 6502c07121b7
files lib-src/cvtmail.c
diffstat 1 files changed, 29 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/lib-src/cvtmail.c	Thu Apr 13 17:07:03 1995 +0000
+++ b/lib-src/cvtmail.c	Thu Apr 13 17:24:35 1995 +0000
@@ -21,7 +21,7 @@
  * exist in your home directory, containing individual mail messages in
  * separate files in the standard gosling emacs mail reader format.
  *
- * Program takes one argument: an output file.  THis file will contain
+ * Program takes one argument: an output file.  This file will contain
  * all the messages in Messages directory, in berkeley mail format.
  * If no output file is mentioned, messages are put in ~/OMAIL.
  *
@@ -41,6 +41,7 @@
 char *xmalloc ();
 char *xrealloc ();
 void skip_to_lf ();
+void sysfail ();
 
 int
 main (argc, argv)
@@ -74,15 +75,20 @@
   cf = (char *) xmalloc (cflen);
 
   mddf = fopen (mdd, "r");
+  if (!mddf)
+    sysfail (mdd);
   if (argc > 1)
-    mfilef = fopen (argv[1], "w");
+    mfile = argv[1];
   else
     {
       mfile = (char *) xmalloc (strlen (hd) + 7);
       strcpy (mfile, hd);
       strcat (mfile, "/OMAIL");
-      mfilef = fopen (mfile, "w");
     }
+  mfilef = fopen (mfile, "w");
+  if (!mfilef)
+    sysfail (mfile);
+
   skip_to_lf (mddf);
   while (fscanf (mddf, "%4c%14[0123456789]", pre, name) != EOF)
     {
@@ -95,11 +101,16 @@
       strcat (cf,"/");
       strcat (cf, name);
       cff = fopen (cf, "r");
-      while ((c = getc(cff)) != EOF)
-	putc (c, mfilef);
-      putc ('\n', mfilef);
-      skip_to_lf (mddf);
-     fclose (cff);
+      if (!cff)
+	perror (cf);
+      else
+	{
+	  while ((c = getc(cff)) != EOF)
+	    putc (c, mfilef);
+	  putc ('\n', mfilef);
+	  skip_to_lf (mddf);
+	  fclose (cff);
+	}
     }
   fclose (mddf);
   fclose (mfilef);    
@@ -111,7 +122,7 @@
      FILE *stream;
 {
   register int c;
-  while ((c = getc(stream)) != '\n')
+  while ((c = getc(stream)) != EOF && c != '\n')
     ;
 }
 
@@ -135,6 +146,15 @@
   exit (1);
 }
 
+void
+sysfail (s)
+     char *s;
+{
+  fprintf (stderr, "cvtmail: ");
+  perror (s);
+  exit (1);
+}
+
 char *
 xmalloc (size)
      unsigned size;