- Update to 1.4.0

PR:		ports/76471
Submitted by:	Paul Dlug <paul@aps.org> (maintainer)
This commit is contained in:
Pav Lucistnik 2005-01-20 10:40:54 +00:00
parent 868b21b271
commit b1ab232145
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=126931
3 changed files with 22 additions and 3 deletions

View file

@ -6,7 +6,7 @@
#
PORTNAME= radmind
PORTVERSION= 1.3.2
PORTVERSION= 1.4.0
CATEGORIES= sysutils
MASTER_SITES= http://rsug.itd.umich.edu/software/radmind/files/
EXTRACT_SUFX= .tgz

View file

@ -1,2 +1,2 @@
MD5 (radmind-1.3.2.tgz) = d94620d0808fd85e71112ce4caec798f
SIZE (radmind-1.3.2.tgz) = 516271
MD5 (radmind-1.4.0.tgz) = 9e2eb883e5c4cfc6495f169594f4d180
SIZE (radmind-1.4.0.tgz) = 342647

View file

@ -0,0 +1,19 @@
--- tls.c.orig Tue Dec 14 16:23:14 2004
+++ tls.c Thu Jan 20 11:35:58 2005
@@ -194,6 +194,7 @@
char *line;
int ntype;
struct in_addr addr;
+ int alt_ext;
if ( inet_aton( host, &addr )) {
ntype = IS_IP4;
@@ -239,7 +240,7 @@
/* This code gratiously borrowed from openldap-2.2.17,
* it allows the use of aliases in the certificate.
*/
- int alt_ext = X509_get_ext_by_NID( peer, NID_subject_alt_name, -1);
+ alt_ext = X509_get_ext_by_NID( peer, NID_subject_alt_name, -1);
if ( alt_ext >= 0 ) {
X509_EXTENSION *ex;