Modernize Doxyfile
[idzebra-moved-to-github.git] / bfile / mfile.c
index dfbfadd..58dbe53 100644 (file)
@@ -1,5 +1,5 @@
-/* $Id: mfile.c,v 1.72 2006-12-03 16:05:13 adam Exp $
-   Copyright (C) 1995-2006
+/* $Id: mfile.c,v 1.75 2007-02-10 18:37:42 adam Exp $
+   Copyright (C) 1995-2007
    Index Data ApS
 
 This file is part of the Zebra server.
@@ -288,9 +288,6 @@ MFile_area mf_init(const char *name, const char *spec, const char *base,
                 mf_destroy(ma);
                return 0;
            }
-#ifndef WIN32
-           fsync(fd);
-#endif
            close(fd);
            if (dirp->max_bytes >= 0)
                dirp->avail_bytes -= part_f->bytes;
@@ -369,6 +366,7 @@ MFile mf_open(MFile_area ma, const char *name, int block_size, int wflag)
                 yaz_log(YLOG_WARN, "metafile %s already open", name);
                 return 0;
             }
+            break;
        }
     if (!mnew)
     {
@@ -439,7 +437,8 @@ int mf_close(MFile mf)
        if (mf->files[i].fd >= 0)
        {
 #ifndef WIN32
-           fsync(mf->files[i].fd);
+            if (mf->wr)
+                fsync(mf->files[i].fd);
 #endif
            close(mf->files[i].fd);
            mf->files[i].fd = -1;