X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=bfile%2Fbfile.c;h=7b6580952d63a3eaa7e15db1628fb3c1181d3ab5;hb=a825e22395e14761bcb2f88177d1a86f3da2843a;hp=9f045aa662700fcc2b7b82c1e28462477f9d662e;hpb=a0f051c2259b7c3c2d6619fb400684e6a5028b71;p=idzebra-moved-to-github.git diff --git a/bfile/bfile.c b/bfile/bfile.c index 9f045aa..7b65809 100644 --- a/bfile/bfile.c +++ b/bfile/bfile.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: bfile.c,v $ - * Revision 1.10 1994-08-25 10:15:54 quinn + * Revision 1.11 1995-09-04 12:33:21 adam + * Various cleanup. YAZ util used instead. + * + * Revision 1.10 1994/08/25 10:15:54 quinn * Trivial * * Revision 1.9 1994/08/24 08:45:48 quinn @@ -33,13 +36,15 @@ * */ -#include -#include +#include #include #include #include #include +#include +#include + int bf_close (BFile bf) { mf_close(bf->mf); @@ -53,7 +58,7 @@ BFile bf_open (const char *name, int block_size, int wflag) if (!(tmp->mf = mf_open(0, name, block_size, wflag))) { - log(LOG_FATAL, "Mfopen failed for %s", name); + logf (LOG_FATAL, "Mfopen failed for %s", name); return(0); } return(tmp);