Bug fix: storeData didn't work with files with multiple records.
[idzebra-moved-to-github.git] / util / res-test.c
index 0e6df18..4d227b1 100644 (file)
@@ -4,7 +4,16 @@
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: res-test.c,v $
- * Revision 1.3  1994-08-18 11:02:27  adam
+ * Revision 1.6  1996-10-29 13:48:16  adam
+ * Updated to use zebrautl.h instead of alexutil.h.
+ *
+ * Revision 1.5  1995/09/04 12:34:05  adam
+ * Various cleanup. YAZ util used instead.
+ *
+ * Revision 1.4  1994/10/04  17:47:11  adam
+ * Function options now returns arg with error option.
+ *
+ * Revision 1.3  1994/08/18  11:02:27  adam
  * Implementation of res_write.
  *
  * Revision 1.2  1994/08/18  10:02:01  adam
  */
 
 #include <stdio.h>
-#include <util.h>
+
+#include <zebrautl.h>
 
 static void res_print (const char *name, const char *value)
 {
-    log (LOG_LOG, "%s=%s", name, value);
+    logf (LOG_LOG, "%s=%s", name, value);
 }
 
 int main(int argc, char **argv)
@@ -45,12 +55,12 @@ int main(int argc, char **argv)
             write_flag = 1;
         else
         {
-            log (LOG_FATAL, "unknown option");
+            logf (LOG_FATAL, "Unknown option '-%s'", arg);
             exit (1);
         }
     if (!resfile)
     {
-        log (LOG_FATAL, "Now resource file given.");
+        logf (LOG_FATAL, "No resource file given.");
         exit (1);
     }
     res = res_open (resfile);