When remaining time for blacklist entry > 24h the hours shown is incorrect : 218.249.24.98/32:25 OK 1/1 2d52h21m44s 45.136.108.29/32:587 OK 1/1 1d28h23m49s 106.53.185.230/32:25 OK 1/1 1d34h6m15s The following patch fixes the error: $ svn diff contrib/blacklist/bin/support.c Index: contrib/blacklist/bin/support.c =================================================================== --- contrib/blacklist/bin/support.c (revision 352893) +++ contrib/blacklist/bin/support.c (working copy) @@ -107,7 +107,7 @@ t /= 60; m = t % 60; t /= 60; - h = t % 60; + h = t % 24; t /= 24; d = t % 24; t /= 356;
This is already fixed in HEAD by rS354399. MFC should be around around the beginning of February.
This is already fixed in HEAD by rS354399. MFC should be around the beginning of February.
Assign to emaste assuming he'll do the MFC.
Closed by r357581 (MFC to 12-STABLE).