ports/mail/fetchmail/files/patch-socket.c
Simon Barner d55a49e9d5 - Use USE_OPENSSL [1]
- 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]
2005-12-10 16:09:13 +00:00

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);