mirror of
https://git.freebsd.org/ports.git
synced 2025-07-08 04:49:17 -04:00
- Remove obsolete --enable-inet6 configure argument [1] - Don't try to enable Kerberos IV and V at the same time [1] - Add WITH_NTLM knob. Inform port user about other knobs (WITH_X11, WITHOUT_NLS) [1] - Correct man page patch [1] - Fix default OpenSSL certificate path [1] [2] - Fix plist [1] [3] - Bump PORTREVISON Submitted by: Matthias Andree <matthias.andree@gmx.de> [1] Reported by: Dieter Rauschenberger <dr@d-ra.de> [2] PR: ports/90084 [2] Reported by: kris via pointyhat [3]
13 lines
331 B
C
13 lines
331 B
C
Index: socket.c
|
|
===================================================================
|
|
--- socket.c (Revision 4499)
|
|
+++ socket.c (Arbeitskopie)
|
|
@@ -841,6 +841,8 @@
|
|
}
|
|
if (certpath)
|
|
SSL_CTX_load_verify_locations(_ctx, NULL, certpath);
|
|
+ else
|
|
+ SSL_CTX_set_default_verify_paths(_ctx);
|
|
|
|
_ssl_context[sock] = SSL_new(_ctx);
|
|
|