A few logging messages added.
[egate.git] / util / iso2709dump.c
index fbf66dc..d8701e1 100644 (file)
@@ -1,12 +1,22 @@
 /*
-   gw-res.c: Iso2709 record management
+   Iso2709 record management
 
    Europagate, 1994-1995.
 
    $Log: iso2709dump.c,v $
-   Revision 1.1  1995/02/09 17:27:10  adam
-   Initial revision
+   Revision 1.3  1995/02/10 17:05:18  adam
+   New function iso2709_display to display MARC records in a
+   line-by-line format. The iso2709_cvt function no longer
+   prints the record to stderr.
 
+ * Revision 1.2  1995/02/10  16:50:33  adam
+ * Indicator field moved to 'struct iso2709_dir' from 'struct
+ * iso2709_field'.
+ * Function iso2709_rm implemented - to delete a MARC record.
+ *
+ * Revision 1.1.1.1  1995/02/09  17:27:11  adam
+ * Initial version of email gateway under CVS control.
+ *
  */
 
 #include <stdio.h>
@@ -22,7 +32,9 @@ int main (int argc, char **argv)
     while ((buf = iso2709_read (stdin)))
     {
         rec = iso2709_cvt (buf);
+        iso2709_display (rec, stderr);
         free (buf);
+        iso2709_rm (rec);
     }
     return 0;
 }