pkgsrc/security/ssldump/patches/patch-aa
salo 3fe45256b1 Compile with the OpenSSL in NetBSD-current.
Patch from ssldump bug tracker, via <veego>.
2005-12-11 18:29:53 +00:00

22 lines
677 B
Text

$NetBSD: patch-aa,v 1.1 2005/12/11 18:29:53 salo Exp $
--- ssl/ssldecode.c-orig 2002-08-17 03:33:17.000000000 +0200
+++ ssl/ssldecode.c
@@ -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 @@ int ssl_decode_ctx_create(dp,keyfile,pas
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())))