svn commit: r370950 - in head/security/bruteblock: . files
Dmitry Marakasov
amdmi3 at FreeBSD.org
Wed Oct 15 20:27:30 UTC 2014
Author: amdmi3
Date: Wed Oct 15 20:27:29 2014
New Revision: 370950
URL: https://svnweb.freebsd.org/changeset/ports/370950
QAT: https://qat.redports.org/buildarchive/r370950/
Log:
- Fix rule reset time on arm
PR: 194381
Submitted by: ronald-lists at klop.ws
MFH: 2014Q4
Added:
head/security/bruteblock/files/patch-bruteblock.c (contents, props changed)
Modified:
head/security/bruteblock/Makefile
Modified: head/security/bruteblock/Makefile
==============================================================================
--- head/security/bruteblock/Makefile Wed Oct 15 19:48:22 2014 (r370949)
+++ head/security/bruteblock/Makefile Wed Oct 15 20:27:29 2014 (r370950)
@@ -3,7 +3,7 @@
PORTNAME= bruteblock
PORTVERSION= 0.0.5
-PORTREVISION= 4
+PORTREVISION= 5
CATEGORIES= security
MASTER_SITES= http://samm.kiev.ua/bruteblock/ \
http://mirror.amdmi3.ru/distfiles/
Added: head/security/bruteblock/files/patch-bruteblock.c
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/bruteblock/files/patch-bruteblock.c Wed Oct 15 20:27:29 2014 (r370950)
@@ -0,0 +1,11 @@
+--- bruteblock.c.orig 2006-08-20 08:22:37.000000000 +0200
++++ bruteblock.c 2014-10-15 16:19:19.000000000 +0200
+@@ -99,7 +99,7 @@
+ snprintf(table, sizeof(table), "%d", ipfw2_table_no);
+ argv[1] = table;
+ argv[2] = command;
+- snprintf(utime, sizeof(utime), "%d",
++ snprintf(utime, sizeof(utime), "%lld",
+ time(NULL) + reset_ip);
+ argv[4] = utime;
+ argv[3] = host;
More information about the svn-ports-head
mailing list