summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Triska <triska@metalevel.at>2016-12-09 18:07:09 +0100
committerRich Salz <rsalz@openssl.org>2016-12-10 16:34:58 -0500
commiteb43101ff8c5c75d1ddf8b90de41d03cea1b0909 (patch)
tree333e64442acf3e12bc7d3b6186337a0fe9a71b1b
parentcce65266299e2e89303a90c131e8171225a1bf88 (diff)
Fix reference to SSL_set_max_proto_version.
CLA: trivial Reviewed-by: Kurt Roeckx <kurt@openssl.org> Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2059)
-rw-r--r--doc/man3/SSL_CTX_new.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man3/SSL_CTX_new.pod b/doc/man3/SSL_CTX_new.pod
index dbb29d8128..4bcbccaf9d 100644
--- a/doc/man3/SSL_CTX_new.pod
+++ b/doc/man3/SSL_CTX_new.pod
@@ -150,7 +150,7 @@ Use the I<version-flexible> methods instead of the version specific methods.
If you want to limit the supported protocols for the version flexible
methods you can use L<SSL_CTX_set_min_proto_version(3)>,
L<SSL_set_min_proto_version(3)>, L<SSL_CTX_set_max_proto_version(3)> and
-LSSL_set_max_proto_version(3)> functions.
+L<SSL_set_max_proto_version(3)> functions.
Using these functions it is possible to choose e.g. TLS_server_method()
and be able to negotiate with all possible clients, but to only
allow newer protocols like TLS 1.0, TLS 1.1 or TLS 1.2.