View | Details | Raw Unified | Return to bug 248309
Collapse All | Expand All

(-)spoofer-new/Makefile (-2 / +1 lines)
Lines 2-9 Link Here
2
# $FreeBSD: head/net/spoofer/Makefile 537830 2020-06-03 18:32:05Z sunpoet $
2
# $FreeBSD: head/net/spoofer/Makefile 537830 2020-06-03 18:32:05Z sunpoet $
3
3
4
PORTNAME=	spoofer
4
PORTNAME=	spoofer
5
PORTVERSION=	1.4.5
5
PORTVERSION=	1.4.6
6
PORTREVISION=	5
7
CATEGORIES=	net
6
CATEGORIES=	net
8
MASTER_SITES=	https://www.caida.org/projects/spoofer/downloads/
7
MASTER_SITES=	https://www.caida.org/projects/spoofer/downloads/
9
8
(-)spoofer-new/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1562260809
1
TIMESTAMP = 1595886363
2
SHA256 (spoofer-1.4.5.tar.gz) = 5f045be7269d93efb1ee7918e923e7695c9a36d192c3ada932bb6ae7fba8d15e
2
SHA256 (spoofer-1.4.6.tar.gz) = fb814d0beaccc48a155e55bb1e7057520d0fe0584dbcc4c0a89f5cee55d0eaf1
3
SIZE (spoofer-1.4.5.tar.gz) = 576951
3
SIZE (spoofer-1.4.6.tar.gz) = 584475
(-)spoofer-new/files/patch-common-util.cc (-14 lines)
Lines 1-14 Link Here
1
--- common/util.cc.orig	2019-02-28 19:32:23 UTC
2
+++ common/util.cc
3
@@ -180,10 +180,7 @@ void win_init(void) {
4
 void spoofer_rand_stir()
5
 {
6
 #if defined(HAVE_ARC4RANDOM)
7
- #if defined(__OpenBSD__) && !defined(HAVE_ARC4RANDOM_STIR)
8
-    // On OpenBSD 5.5+, the arc4random() function is not actually the ARC4
9
-    // algorithm, and there is no arc4random_stir() function.
10
- #else
11
+ #if defined(HAVE_ARC4RANDOM_STIR)
12
     arc4random_stir();
13
  #endif
14
 #elif defined(HAVE_SRANDOMDEV)

Return to bug 248309