From: Adam Dickmeiss Date: Tue, 28 Mar 1995 08:01:51 +0000 (+0000) Subject: Bug fix: GW_LOG_ERRNO. X-Git-Url: http://git.indexdata.com/?p=egate.git;a=commitdiff_plain;h=e5ac7ae8a2f7f9b01eab48d8b04a79288c567a1d Bug fix: GW_LOG_ERRNO. --- diff --git a/res+log/gw-log.c b/res+log/gw-log.c index 87e3aaf..4047908 100644 --- a/res+log/gw-log.c +++ b/res+log/gw-log.c @@ -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));