mirror of
https://github.com/weechat/weechat.git
synced 2026-06-12 14:14:48 +02:00
Removed "?" when system date not found
This commit is contained in:
@@ -103,7 +103,7 @@ wee_log_printf (char *message, ...)
|
||||
date_tmp->tm_hour, date_tmp->tm_min, date_tmp->tm_sec,
|
||||
buffer);
|
||||
else
|
||||
fprintf (log_file, "[????-??-?? ??:??:??] %s", buffer);
|
||||
fprintf (log_file, "%s", buffer);
|
||||
fflush (log_file);
|
||||
}
|
||||
|
||||
|
||||
@@ -103,7 +103,7 @@ wee_log_printf (char *message, ...)
|
||||
date_tmp->tm_hour, date_tmp->tm_min, date_tmp->tm_sec,
|
||||
buffer);
|
||||
else
|
||||
fprintf (log_file, "[????-??-?? ??:??:??] %s", buffer);
|
||||
fprintf (log_file, "%s", buffer);
|
||||
fflush (log_file);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user