svn commit: r370961 - in branches/2014Q4/security/bruteblock: . files

Dmitry Marakasov amdmi3 at FreeBSD.org
Wed Oct 15 22:26:26 UTC 2014


Author: amdmi3
Date: Wed Oct 15 22:26:24 2014
New Revision: 370961
URL: https://svnweb.freebsd.org/changeset/ports/370961
QAT: https://qat.redports.org/buildarchive/r370961/

Log:
  MFH: r370950
  
  - Fix rule reset time on arm
  
  PR:		194381
  Submitted by:	ronald-lists at klop.ws
  Approved by:	portmgr

Added:
  branches/2014Q4/security/bruteblock/files/patch-bruteblock.c
     - copied unchanged from r370950, head/security/bruteblock/files/patch-bruteblock.c
Modified:
  branches/2014Q4/security/bruteblock/Makefile
Directory Properties:
  branches/2014Q4/   (props changed)

Modified: branches/2014Q4/security/bruteblock/Makefile
==============================================================================
--- branches/2014Q4/security/bruteblock/Makefile	Wed Oct 15 22:05:08 2014	(r370960)
+++ branches/2014Q4/security/bruteblock/Makefile	Wed Oct 15 22:26:24 2014	(r370961)
@@ -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/

Copied: branches/2014Q4/security/bruteblock/files/patch-bruteblock.c (from r370950, head/security/bruteblock/files/patch-bruteblock.c)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2014Q4/security/bruteblock/files/patch-bruteblock.c	Wed Oct 15 22:26:24 2014	(r370961, copy of r370950, head/security/bruteblock/files/patch-bruteblock.c)
@@ -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-all mailing list