Bug fix: GW_LOG_ERRNO.
authorAdam Dickmeiss <adam@indexdata.dk>
Tue, 28 Mar 1995 08:01:51 +0000 (08:01 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Tue, 28 Mar 1995 08:01:51 +0000 (08:01 +0000)
res+log/gw-log.c

index 87e3aaf..4047908 100644 (file)
@@ -4,7 +4,10 @@
  * Europagate, 1994-1995.
  *
  * $Log: gw-log.c,v $
- * Revision 1.5  1995/03/27 12:51:10  adam
+ * Revision 1.6  1995/03/28 08:01:51  adam
+ * Bug fix: GW_LOG_ERRNO.
+ *
+ * Revision 1.5  1995/03/27  12:51:10  adam
  * New log level in use: GW_LOG_ERRNO.
  *
  * Revision 1.4  1995/02/23  08:32:22  adam
@@ -151,7 +154,7 @@ int gw_log (unsigned level_a, const char *event_type, const char *format, ...)
         *cp = ' ';
     count = strlen (emit_str);
     vsprintf (emit_str+count, format, ap);
-    if (e_level & GW_LOG_ERRNO)
+    if (level_a & GW_LOG_ERRNO)
     {
         strcat (emit_str, ": ");
         strcat (emit_str, strerror (errno));