X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Freadconf.c;h=429d70e7a190ddfe05c102d53274863a1c314dd3;hb=d9ee01635f03f9095a66f71b73580560d48798e8;hp=194317f5278e93ac801bf1ca2b3ea8a7ea0dceb7;hpb=762e0e6bf7324c38a001b7a14c41c4a1e98e9499;p=yaz-moved-to-github.git diff --git a/util/readconf.c b/util/readconf.c index 194317f..429d70e 100644 --- a/util/readconf.c +++ b/util/readconf.c @@ -4,7 +4,13 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: readconf.c,v $ - * Revision 1.7 1999-06-30 09:10:32 adam + * Revision 1.9 1999-11-30 13:47:12 adam + * Improved installation. Moved header files to include/yaz. + * + * Revision 1.8 1999/08/27 09:40:32 adam + * Renamed logf function to yaz_log. Removed VC++ project files. + * + * Revision 1.7 1999/06/30 09:10:32 adam * Fixed reading of MS-DOS files. * * Revision 1.6 1998/10/13 16:09:55 adam @@ -43,8 +49,8 @@ #include #include -#include -#include +#include +#include #define l_isspace(c) ((c) == '\t' || (c) == ' ' || (c) == '\n' || (c) == '\r') @@ -95,7 +101,7 @@ int readconf(char *name, void *rprivate, if (!(f = fopen(name, "r"))) { - logf(LOG_WARN|LOG_ERRNO, "readconf: %s", name); + yaz_log(LOG_WARN|LOG_ERRNO, "readconf: %s", name); return -1; } for (;;)