diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2004-07-04 21:03:39 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2004-07-04 21:03:39 +0000 |
commit | 622a18fb3f9ee131b8de3b8808ef6b4718c40246 (patch) | |
tree | dd3c33d6f7ae1af01c0e22abe87a954e40a10480 /src | |
parent | 97b34b36fc90a32258cb2a7f93febe4a3435f61e (diff) | |
download | weechat-622a18fb3f9ee131b8de3b8808ef6b4718c40246.zip |
Removed "?" when system date not found
Diffstat (limited to 'src')
-rw-r--r-- | src/common/weechat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/weechat.c b/src/common/weechat.c index 39bb39a82..d7515ce23 100644 --- a/src/common/weechat.c +++ b/src/common/weechat.c @@ -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); } |