mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-28 10:08:24 +00:00
383b44fe29
- Revise manual page for correctness and completeness - Reinstate the `-y' (nroff) flag - Drop gmake(1) dependency, builds with BSD make(1) - Tweak port description and Makefile markup and syntax - Pet portlint(1) Mentioned in PR: ports/119680 [1] Patches obtained from: Debian
21 lines
594 B
C
21 lines
594 B
C
--- ssl/ssldecode.c.orig Sat Aug 17 05:33:17 2002
|
|
+++ ssl/ssldecode.c Fri Jan 20 13:09:49 2006
|
|
@@ -51,6 +51,7 @@
|
|
#include <openssl/ssl.h>
|
|
#include <openssl/hmac.h>
|
|
#include <openssl/evp.h>
|
|
+#include <openssl/md5.h>
|
|
#include <openssl/x509v3.h>
|
|
#endif
|
|
#include "ssldecode.h"
|
|
@@ -131,7 +132,8 @@
|
|
ssl_decode_ctx *d=0;
|
|
int r,_status;
|
|
|
|
- SSLeay_add_all_algorithms();
|
|
+ SSL_library_init();
|
|
+ OpenSSL_add_all_algorithms();
|
|
if(!(d=(ssl_decode_ctx *)malloc(sizeof(ssl_decode_ctx))))
|
|
ABORT(R_NO_MEMORY);
|
|
if(!(d->ssl_ctx=SSL_CTX_new(SSLv23_server_method())))
|