X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fres.c;h=0b2cc7591bde6cfda25bdcfad153d609c9acbd8f;hb=b7918920dd34b8c4c93e8d3095203e236523f453;hp=10891dc35fb41819fb16dfa2a14c182db84b3604;hpb=2368d4bf1b93eaa6c65e7a7a678e290154a75efd;p=idzebra-moved-to-github.git diff --git a/util/res.c b/util/res.c index 10891dc..0b2cc75 100644 --- a/util/res.c +++ b/util/res.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: res.c,v $ - * Revision 1.12 1995-01-24 16:40:32 adam + * Revision 1.13 1995-09-04 12:34:05 adam + * Various cleanup. YAZ util used instead. + * + * Revision 1.12 1995/01/24 16:40:32 adam * Bug fix. * * Revision 1.11 1994/10/05 16:54:52 adam @@ -46,7 +49,7 @@ #include #include #include -#include +#include static struct res_entry *add_entry (Res r) { @@ -84,7 +87,7 @@ static void reread (Res r) fr = fopen (path, "r"); if (!fr) { - log (LOG_FATAL|LOG_ERRNO, "Cannot open %s", path); + logf (LOG_FATAL|LOG_ERRNO, "Cannot open %s", path); exit (1); } while (1) @@ -136,7 +139,7 @@ static void reread (Res r) val_buf[val_size++] = '\0'; resp->value = xmalloc (val_size); strcpy (resp->value, val_buf); - log (LOG_DEBUG, "(name=%s,value=%s)", + logf (LOG_DEBUG, "(name=%s,value=%s)", resp->name, resp->value); break; } @@ -175,7 +178,7 @@ Res res_open (const char *name) { Res r; if (access (name, R_OK)) - log (LOG_LOG|LOG_ERRNO, "Cannot access `%s'", name); + logf (LOG_LOG|LOG_ERRNO, "Cannot access `%s'", name); r = xmalloc (sizeof(*r)); r->init = 0; r->first = r->last = NULL; @@ -221,7 +224,7 @@ char *res_get_def (Res r, const char *name, char *def) if (!(t = res_get (r, name))) { - log(LOG_DEBUG, "CAUTION: Using default resource %s:%s", name, def); + logf (LOG_DEBUG, "CAUTION: Using default resource %s:%s", name, def); return def; } else @@ -279,7 +282,7 @@ int res_write (Res r) fr = fopen (path, "w"); if (!fr) { - log (LOG_FATAL|LOG_ERRNO, "Cannot create %s", path); + logf (LOG_FATAL|LOG_ERRNO, "Cannot create %s", path); exit (1); }