diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2015-01-25 18:48:06 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2015-01-25 18:48:06 +0000 |
commit | 70817078bcd173fa33c9dabdf1e8068c901a83a1 (patch) | |
tree | f34e22f8ee13a5c0850b7df475cc158547e36e53 /src | |
parent | 8acbb134096a6377737c435d43497dd79d17d081 (diff) |
Do not panic-log each clamd connection fail. Bug 392
The panic log line for all servers failed is retained.
Diffstat (limited to 'src')
-rw-r--r-- | src/src/malware.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/src/malware.c b/src/src/malware.c index 365ef0350..43f031494 100644 --- a/src/src/malware.c +++ b/src/src/malware.c @@ -1360,7 +1360,8 @@ if (!malware_ok) break; } - (void) m_errlog_defer(scanent, errstr); + log_write(0, LOG_MAIN, "malware acl condition: %s: %s", + scanent->name, errstr); /* Remove the server from the list. XXX We should free the memory */ num_servers--; |