Resource system uses only one log debug level.
[egate.git] / res+log / gw-log.c
index 3c0a7b7..a7e6558 100644 (file)
@@ -4,7 +4,10 @@
  * Europagate, 1994-1995.
  *
  * $Log: gw-log.c,v $
- * Revision 1.8  1995/04/17 09:36:16  adam
+ * Revision 1.9  1995/04/19 12:12:06  adam
+ * Resource system uses only one log debug level.
+ *
+ * Revision 1.8  1995/04/17  09:36:16  adam
  * Minor changes.
  *
  * Revision 1.7  1995/04/10  13:20:25  adam
@@ -139,6 +142,7 @@ int gw_log (unsigned level_a, const char *event_type, const char *format, ...)
     static char emit_str[2048];
     struct file_mask *list;
     struct timeval tv;
+    struct timezone tz;
     va_list ap;
     unsigned e_level = level_a & level;
     int count;
@@ -150,7 +154,7 @@ int gw_log (unsigned level_a, const char *event_type, const char *format, ...)
         return 0;
 
     va_start (ap, format);
-    gettimeofday (&tv, NULL);
+    gettimeofday (&tv, &tz);
 
     memcpy (&tms, localtime (&tv.tv_sec), sizeof(tms));
     sprintf (emit_str, "%s %d %02d%02d%02d%02d%02d%02d%03d %d %s ",