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

(-)Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	freeradius
4
PORTNAME=	freeradius
5
DISTVERSION=	2.2.5
5
DISTVERSION=	2.2.5
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	net
7
CATEGORIES=	net
8
MASTER_SITES=	ftp://ftp.freeradius.org/pub/freeradius/%SUBDIR%/ \
8
MASTER_SITES=	ftp://ftp.freeradius.org/pub/freeradius/%SUBDIR%/ \
9
		ftp://ftp.ntua.gr/pub/net/radius/freeradius/%SUBDIR%/ \
9
		ftp://ftp.ntua.gr/pub/net/radius/freeradius/%SUBDIR%/ \
(-)files/patch-src__main__version.c (+27 lines)
Line 0 Link Here
1
--- ./src/main/version.c.orig	2014-04-28 21:13:08.000000000 +0200
2
+++ ./src/main/version.c	2014-08-14 20:06:47.000000000 +0200
3
@@ -32,8 +32,6 @@
4
 #include <openssl/crypto.h>
5
 #include <openssl/opensslv.h>
6
 
7
-static long ssl_built = OPENSSL_VERSION_NUMBER;
8
-
9
 /** Check build and linked versions of OpenSSL match
10
  *
11
  * Startup check for whether the linked version of OpenSSL matches the
12
@@ -54,15 +52,6 @@
13
 
14
 	ssl_linked = SSLeay();
15
 
16
-	if (ssl_linked != ssl_built) {
17
-		radlog(L_ERR, "libssl version mismatch."
18
-		       "  Built with: %lx\n  Linked: %lx",
19
-		       (unsigned long) ssl_built,
20
-		       (unsigned long) ssl_linked);
21
-
22
-		return -1;
23
-	};
24
-
25
 	if (!allow_vulnerable) {
26
 		/* Check for bad versions */
27
 		/* 1.0.1 - 1.0.1f CVE-2014-0160 http://heartbleed.com */

Return to bug 192661