Split YAZ library into two libs : libyaz.la and libyaz_server.la.
[yaz-moved-to-github.git] / zoom / zoomsh.c
index 5f99d66..8b790f1 100644 (file)
@@ -1,8 +1,8 @@
 /*
- * Copyright (C) 1995-2005, Index Data ApS
+ * Copyright (C) 1995-2007, Index Data ApS
  * See the file LICENSE for details.
  *
- * $Id: zoomsh.c,v 1.42 2006-10-31 14:08:03 adam Exp $
+ * $Id: zoomsh.c,v 1.47 2007-04-17 20:26:19 adam Exp $
  */
 
 /** \file zoomsh.c
@@ -28,7 +28,6 @@
 #include <yaz/log.h>
 #include <yaz/nmem.h>
 #include <yaz/zoom.h>
-#include <yaz/oid.h>
 
 #define MAX_CON 100
 
@@ -204,10 +203,8 @@ static void display_records (ZOOM_connection c,
             /* if rec is non-null, we got a record for display */
             if (rec)
             {
-                char oidbuf[100];
-                (void) oid_name_to_dotstring(CLASS_RECSYN, syntax, oidbuf);
-                printf ("%d %s %s (%s)\n",
-                        pos, (db ? db : "unknown"), syntax, oidbuf);
+                printf ("%d %s %s\n",
+                        pos, (db ? db : "unknown"), syntax);
                 if (render)
                     fwrite (render, 1, len, stdout);
                 printf ("\n");
@@ -647,9 +644,7 @@ int main(int argc, char **argv)
         int mask = yaz_log_mask_str(maskstr);
         yaz_log_init_level(mask);
     }
-    nmem_init();
     zoomsh(argc, argv);
-    nmem_exit();
     exit (0);
 }
 /*