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

(-)net-mgmt/nrpe/Makefile (+2 lines)
Lines 10-15 Link Here
10
MAINTAINER=	zeising@FreeBSD.org
10
MAINTAINER=	zeising@FreeBSD.org
11
COMMENT?=	Nagios Remote Plugin Executor
11
COMMENT?=	Nagios Remote Plugin Executor
12
12
13
LICENSE=	GPLv2
14
13
CONFLICTS=	nrpe-ssl-2.*
15
CONFLICTS=	nrpe-ssl-2.*
14
16
15
USES=		perl5
17
USES=		perl5
(-)net-mgmt/nrpe/files/patch-configure (+11 lines)
Line 0 Link Here
1
--- configure.orig	2013-09-06 15:27:13 UTC
2
+++ configure
3
@@ -6745,7 +6745,7 @@ _ACEOF
4
 				sslbin=$ssldir/bin/openssl
5
 			fi
6
 			# awk to strip off meta data at bottom of dhparam output
7
-			$sslbin dhparam -C 512 | awk '/^-----/ {exit} {print}' > include/dh.h
8
+			$sslbin dhparam -C 2048 | awk '/^-----/ {exit} {print}' > include/dh.h
9
 		fi
10
 	fi
11
 
(-)net-mgmt/nrpe/files/patch-src-nrpe.c (-2 / +11 lines)
Lines 1-5 Link Here
1
--- ./src/nrpe.c.orig	2013-09-06 17:27:13.000000000 +0200
1
--- src/nrpe.c.orig	2013-09-06 15:27:13 UTC
2
+++ ./src/nrpe.c	2013-10-05 17:15:33.000000000 +0200
2
+++ src/nrpe.c
3
@@ -30,6 +30,8 @@
3
@@ -30,6 +30,8 @@
4
 #include "utils.h"
4
 #include "utils.h"
5
 #include "acl.h"
5
 #include "acl.h"
Lines 19-24 Link Here
19
 
19
 
20
 
20
 
21
 int main(int argc, char **argv){
21
 int main(int argc, char **argv){
22
@@ -266,7 +270,7 @@ int main(int argc, char **argv){
23
 
24
 		/* use anonymous DH ciphers */
25
 		SSL_CTX_set_cipher_list(ctx,"ADH");
26
-		dh=get_dh512();
27
+		dh=get_dh2048();
28
 		SSL_CTX_set_tmp_dh(ctx,dh);
29
 		DH_free(dh);
30
 		if(debug==TRUE)
22
@@ -969,8 +973,14 @@
31
@@ -969,8 +973,14 @@
23
 					continue;
32
 					continue;
24
 
33
 

Return to bug 218930