mirror of
https://github.com/fail2ban/fail2ban.git
synced 2026-03-11 08:55:31 +00:00
systemd backend: fixes missing space in message (tag <matches>) between timestamp and host if the message read from systemd journal;
closes gh-3293
This commit is contained in:
parent
fbfc85d8c0
commit
5aeb49a620
1 changed files with 1 additions and 1 deletions
|
|
@ -250,7 +250,7 @@ class FilterSystemd(JournalFilter): # pragma: systemd no cover
|
|||
logSys.log(5, "[%s] Read systemd journal entry: %s %s", self.jailName,
|
||||
date[0], logline)
|
||||
## use the same type for 1st argument:
|
||||
return ((logline[:0], date[0], logline.replace('\n', '\\n')), date[1])
|
||||
return ((logline[:0], date[0] + ' ', logline.replace('\n', '\\n')), date[1])
|
||||
|
||||
def seekToTime(self, date):
|
||||
if isinstance(date, (int, long)):
|
||||
|
|
|
|||
Loading…
Reference in a new issue