X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=util%2Fres.c;h=10891dc35fb41819fb16dfa2a14c182db84b3604;hb=4cb66a9e7b322dd58c9d52f1a660a271d6c384f4;hp=743d5e884added9ec48003b13d0a534a4ceadcd1;hpb=23d6a0472bacd0b45446fcbb0629032b8b0d4cb6;p=idzebra-moved-to-github.git diff --git a/util/res.c b/util/res.c index 743d5e8..10891dc 100644 --- a/util/res.c +++ b/util/res.c @@ -4,7 +4,16 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: res.c,v $ - * Revision 1.9 1994-09-16 14:41:12 quinn + * Revision 1.12 1995-01-24 16:40:32 adam + * Bug fix. + * + * Revision 1.11 1994/10/05 16:54:52 adam + * Minor changes. + * + * Revision 1.10 1994/10/05 10:47:31 adam + * Small bug fix. + * + * Revision 1.9 1994/09/16 14:41:12 quinn * Added log warning to res_get_def * * Revision 1.8 1994/09/16 14:37:12 quinn @@ -15,7 +24,6 @@ * * Revision 1.6 1994/09/01 17:45:14 adam * Work on resource manager. - * CVS ---------------------------------------------------------------------- * * Revision 1.5 1994/08/18 11:02:28 adam * Implementation of res_write. @@ -76,7 +84,7 @@ static void reread (Res r) fr = fopen (path, "r"); if (!fr) { - log (LOG_FATAL|LOG_ERRNO, "cannot open %s", path); + log (LOG_FATAL|LOG_ERRNO, "Cannot open %s", path); exit (1); } while (1) @@ -167,12 +175,10 @@ Res res_open (const char *name) { Res r; if (access (name, R_OK)) - { - log (LOG_LOG|LOG_ERRNO, "cannot access `%s'", name); - xfree (r); - } + log (LOG_LOG|LOG_ERRNO, "Cannot access `%s'", name); r = xmalloc (sizeof(*r)); r->init = 0; + r->first = r->last = NULL; r->name = xstrdup (name); return r; } @@ -273,7 +279,7 @@ int res_write (Res r) fr = fopen (path, "w"); if (!fr) { - log (LOG_FATAL|LOG_ERRNO, "cannot create %s", path); + log (LOG_FATAL|LOG_ERRNO, "Cannot create %s", path); exit (1); }