summaryrefslogtreecommitdiff
path: root/lib/vtls
diff options
context:
space:
mode:
authorJay Satiro <raysatiro@yahoo.com>2019-06-30 17:16:28 -0400
committerJay Satiro <raysatiro@yahoo.com>2019-06-30 17:16:28 -0400
commit3609ab3147b11118319da4584a0c72f638697838 (patch)
tree1a90292c0c7eae0b632736e44f2dd1c591e04a0e /lib/vtls
parent44b5468e8eeae889c5f7c8d6f457c6fa6c2c737d (diff)
downloadgnurl-3609ab3147b11118319da4584a0c72f638697838.tar.gz
gnurl-3609ab3147b11118319da4584a0c72f638697838.tar.bz2
gnurl-3609ab3147b11118319da4584a0c72f638697838.zip
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
Diffstat (limited to 'lib/vtls')
-rw-r--r--lib/vtls/openssl.c2
1 files changed, 0 insertions, 2 deletions
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);