From 3609ab3147b11118319da4584a0c72f638697838 Mon Sep 17 00:00:00 2001 From: Jay Satiro Date: Sun, 30 Jun 2019 17:16:28 -0400 Subject: docs: Fix links to OpenSSL docs OpenSSL changed their manual locations and does not redirect to the new locations. Bug: https://curl.haxx.se/mail/lib-2019-06/0056.html Reported-by: Daniel Stenberg --- lib/vtls/openssl.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'lib/vtls') diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index 3cdcbfeb9..1d2ec04ed 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -3280,7 +3280,6 @@ static CURLcode pkp_pin_peer_pubkey(struct Curl_easy *data, X509* cert, if(len1 < 1) break; /* failed */ - /* https://www.openssl.org/docs/crypto/buffer.html */ buff1 = temp = malloc(len1); if(!buff1) break; /* failed */ @@ -3302,7 +3301,6 @@ static CURLcode pkp_pin_peer_pubkey(struct Curl_easy *data, X509* cert, result = Curl_pin_peer_pubkey(data, pinnedpubkey, buff1, len1); } while(0); - /* https://www.openssl.org/docs/crypto/buffer.html */ if(buff1) free(buff1); -- cgit v1.2.3