projects
/
idzebra-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
040064b
)
Fixed serious bug in mf_open which made it fail to see an already existing
author
Adam Dickmeiss
<adam@indexdata.dk>
Sat, 10 Feb 2007 18:37:42 +0000
(18:37 +0000)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Sat, 10 Feb 2007 18:37:42 +0000
(18:37 +0000)
metafile. The bug was introduced in mfile 1.70.
bfile/mfile.c
patch
|
blob
|
history
diff --git
a/bfile/mfile.c
b/bfile/mfile.c
index
2295d11
..
58dbe53
100644
(file)
--- a/
bfile/mfile.c
+++ b/
bfile/mfile.c
@@
-1,4
+1,4
@@
-/* $Id: mfile.c,v 1.74 2007-01-15 15:10:14 adam Exp $
+/* $Id: mfile.c,v 1.75 2007-02-10 18:37:42 adam Exp $
Copyright (C) 1995-2007
Index Data ApS
@@
-366,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)
{