aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2020-12-13 12:31:32 +0100
committerGuilhem Moulin <guilhem@fripost.org>2020-12-13 12:31:32 +0100
commit2d301be3df763be39d12d214779cf2320b426696 (patch)
tree0722ec828200471d70db6b1ae290eceaa44231cf
parent2dc741fe5a127b4d10bef0e001d10459b2c5e9ef (diff)
Fix broken URLs.
-rw-r--r--lib/Net/IMAP/InterIMAP.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Net/IMAP/InterIMAP.pm b/lib/Net/IMAP/InterIMAP.pm
index 2e36d6e..6afca07 100644
--- a/lib/Net/IMAP/InterIMAP.pm
+++ b/lib/Net/IMAP/InterIMAP.pm
@@ -1627,7 +1627,7 @@ sub _proxify($$$$) {
# $self->_ssl_verify($self, $preverify_ok, $x509_ctx)
# SSL verify callback function, see
-# https://www.openssl.org/docs/manmaster/ssl/SSL_CTX_set_verify.html
+# https://www.openssl.org/docs/manmaster/man3/SSL_CTX_set_verify.html
sub _ssl_verify($$$) {
my ($self, $ok, $x509_ctx) = @_;
return 0 unless $x509_ctx; # reject
@@ -1748,10 +1748,10 @@ sub _start_ssl($$) {
$ssl_options |= $SSL_proto{$_} foreach @proto_exclude;
}
- # https://www.openssl.org/docs/manmaster/ssl/SSL_CTX_set_options.html
+ # https://www.openssl.org/docs/manmaster/man3/SSL_CTX_set_options.html
Net::SSLeay::CTX_set_options($ctx, $ssl_options);
- # https://www.openssl.org/docs/manmaster/ssl/SSL_CTX_set_mode.html
+ # https://www.openssl.org/docs/manmaster/man3/SSL_CTX_set_mode.html
Net::SSLeay::CTX_set_mode($ctx,
Net::SSLeay::MODE_ENABLE_PARTIAL_WRITE() |
Net::SSLeay::MODE_ACCEPT_MOVING_WRITE_BUFFER() |