diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-08-28 16:44:15 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-08-28 16:44:15 +0100 |
commit | 3e6a976f8a2aa5afa3cc76f98d4d7eeff1474ed1 (patch) | |
tree | 60b24dd5206651dab5c82b869be379a5ea222993 | |
parent | 8f504b454ed81b202487e168bb076ddd3ca0e4db (diff) | |
download | rspamd-3e6a976f8a2aa5afa3cc76f98d4d7eeff1474ed1.tar.gz rspamd-3e6a976f8a2aa5afa3cc76f98d4d7eeff1474ed1.zip |
Fix repeated logging.
-rw-r--r-- | src/libutil/logger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/logger.c b/src/libutil/logger.c index b180b9dc5..c3ede99a5 100644 --- a/src/libutil/logger.c +++ b/src/libutil/logger.c @@ -576,7 +576,7 @@ file_log_function (const gchar *log_domain, gboolean forced, gpointer arg) { - static gchar tmpbuf[256], timebuf[32], modulebuf[64]; + gchar tmpbuf[256], timebuf[32], modulebuf[64]; gchar *m; time_t now; struct tm *tms; |