TKL documentation
[yaz-moved-to-github.git] / util / log.c
index 42e1167..2b28a59 100644 (file)
@@ -2,7 +2,7 @@
  * Copyright (c) 1995-2002, Index Data
  * See the file LICENSE for details.
  *
- * $Id: log.c,v 1.28 2002-08-29 09:58:42 adam Exp $
+ * $Id: log.c,v 1.30 2002-10-22 10:04:51 adam Exp $
  */
 
 #if HAVE_CONFIG_H
@@ -177,9 +177,10 @@ void yaz_log(int level, const char *fmt, ...)
            strcat(buf, "]");
        }
 #else
-        sprintf(buf + strlen(buf), " [%s]", strerror(errno));
+        sprintf(buf + strlen(buf), " [%s]", strerror(yaz_errno()));
 #endif
     }
+    va_end (ap);
     if (start_hook_func)
         (*start_hook_func)(o_level, buf, start_hook_info);
     ti = time(0);