Updated WIN32 code specific sections. Changed header.
[idzebra-moved-to-github.git] / index / recstat.c
index dc904b0..3015264 100644 (file)
@@ -1,10 +1,16 @@
 /*
- * Copyright (C) 1994-1996, Index Data I/S 
+ * Copyright (C) 1994-1999, Index Data
  * All rights reserved.
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: recstat.c,v $
- * Revision 1.5  1997-09-17 12:19:17  adam
+ * Revision 1.7  1999-02-02 14:51:06  adam
+ * Updated WIN32 code specific sections. Changed header.
+ *
+ * Revision 1.6  1998/01/12 15:04:08  adam
+ * The test option (-s) only uses read-lock (and not write lock).
+ *
+ * Revision 1.5  1997/09/17 12:19:17  adam
  * Zebra version corresponds to YAZ version 1.4.
  * Changed Zebra server so that it doesn't depend on global common_resource.
  *
 #include <assert.h>
 #include <string.h>
 #include <fcntl.h>
-#ifndef WINDOWS
+#ifndef WIN32
 #include <unistd.h>
 #endif
 #include "recindxp.h"
 
-void rec_prstat (BFiles bfs)
+void rec_prstat (Records records)
 {
-    Records records = rec_open (bfs, 0);
     int i;
     int total_bytes = 0;
     
@@ -60,5 +65,4 @@ void rec_prstat (BFiles bfs)
           records->head.total_bytes);
     logf (LOG_LOG,
           "Total size with overhead             %8d", total_bytes);
-    rec_close (&records);
 }