Error converting times in mod_fail2ban (#889)

This commit is contained in:
Badlop 2016-01-05 12:29:13 +01:00
parent da45a064a8
commit c01e3f24a5
1 changed files with 4 additions and 1 deletions

View File

@ -83,7 +83,7 @@ check_bl_c2s(_Acc, Addr, Lang) ->
true ->
IP = jlib:ip_to_list(Addr),
UnbanDate = format_date(
calendar:now_to_universal_time(TS)),
calendar:now_to_universal_time(seconds_to_now(TS))),
LogReason = io_lib:fwrite(
"Too many (~p) failed authentications "
"from this IP address (~s). The address "
@ -179,6 +179,9 @@ is_loaded_at_other_hosts(Host) ->
gen_mod:is_loaded(VHost, ?MODULE)
end, ?MYHOSTS).
seconds_to_now(Secs) ->
{Secs div 1000000, Secs rem 1000000, 0}.
format_date({{Year, Month, Day}, {Hour, Minute, Second}}) ->
io_lib:format("~2..0w:~2..0w:~2..0w ~2..0w.~2..0w.~4..0w",
[Hour, Minute, Second, Day, Month, Year]).