From 55b3403a2c1fea0409facae576925bb17ee85f79 Mon Sep 17 00:00:00 2001 From: Sebastian Hammer Date: Tue, 23 Aug 1994 14:21:38 +0000 Subject: [PATCH] Fixed call to log --- bfile/bfile.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bfile/bfile.c b/bfile/bfile.c index ece60e6..9cb5ba0 100644 --- a/bfile/bfile.c +++ b/bfile/bfile.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: bfile.c,v $ - * Revision 1.5 1994-08-18 08:10:08 quinn + * Revision 1.6 1994-08-23 14:21:38 quinn + * Fixed call to log + * + * Revision 1.5 1994/08/18 08:10:08 quinn * Minimal changes * * Revision 1.4 1994/08/17 14:27:32 quinn @@ -38,7 +41,7 @@ BFile bf_open (const char *name, int block_size, int wflag) if ((tmp->fd = open(name, wflag ? O_RDWR : O_RDONLY, 0666)) < 0) { - log(LOG_FATAL, "open: %s"); + log(LOG_FATAL|LOG_ERRNO, "open"); return(0); } tmp->block_size = block_size; -- 1.7.10.4