aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/radmind/files
diff options
context:
space:
mode:
authorpav <pav@FreeBSD.org>2005-01-20 18:40:54 +0800
committerpav <pav@FreeBSD.org>2005-01-20 18:40:54 +0800
commitd2a3151265ce8d742ea20a257d9785d8cd768bc8 (patch)
tree11765deac4fc69a1a4fd4f1666c2e7572621f4f4 /sysutils/radmind/files
parent460fe472ea4990d677987e5e94089f5ac279870c (diff)
downloadfreebsd-ports-gnome-d2a3151265ce8d742ea20a257d9785d8cd768bc8.tar.gz
freebsd-ports-gnome-d2a3151265ce8d742ea20a257d9785d8cd768bc8.tar.zst
freebsd-ports-gnome-d2a3151265ce8d742ea20a257d9785d8cd768bc8.zip
- Update to 1.4.0
PR: ports/76471 Submitted by: Paul Dlug <paul@aps.org> (maintainer)
Diffstat (limited to 'sysutils/radmind/files')
-rw-r--r--sysutils/radmind/files/patch-tls.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/sysutils/radmind/files/patch-tls.c b/sysutils/radmind/files/patch-tls.c
new file mode 100644
index 000000000000..1f7c99e89e67
--- /dev/null
+++ b/sysutils/radmind/files/patch-tls.c
@@ -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;