aboutsummaryrefslogtreecommitdiffstats
path: root/doc/ssl
diff options
context:
space:
mode:
authorFdaSilvaYY <fdasilvayy@gmail.com>2016-09-15 21:37:14 +0200
committerRich Salz <rsalz@openssl.org>2016-09-18 00:22:00 -0400
commit81f9ce1e1965e0e33db6d2391285c4c1b6af0434 (patch)
tree026d9748c8d595b74951da498a30483db0e5a144 /doc/ssl
parent66fe388aa410820d80ab1d99730b64b1b56a89d4 (diff)
downloadopenssl-81f9ce1e1965e0e33db6d2391285c4c1b6af0434.tar.gz
Constify code about X509_VERIFY_PARAM
Reviewed-by: Viktor Dukhovni <viktor@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1594)
Diffstat (limited to 'doc/ssl')
-rw-r--r--doc/ssl/SSL_set1_host.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ssl/SSL_set1_host.pod b/doc/ssl/SSL_set1_host.pod
index 3339a0e803..d254fe7483 100644
--- a/doc/ssl/SSL_set1_host.pod
+++ b/doc/ssl/SSL_set1_host.pod
@@ -12,7 +12,7 @@ SSL server verification parameters
int SSL_set1_host(SSL *s, const char *hostname);
int SSL_add1_host(SSL *s, const char *hostname);
void SSL_set_hostflags(SSL *s, unsigned int flags);
- const char *SSL_get0_peername(SSL *s);
+ const char *SSL_get0_peername(const SSL *s);
=head1 DESCRIPTION