summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorRuslan Baratov <x@ruslo.dev>2024-05-12 16:33:59 +0800
committerTomas Mraz <tomas@openssl.org>2024-05-15 12:22:57 +0200
commit2f3d8493a990c6923a0f0d6a07c89f94bba7ece1 (patch)
tree2c400a3804112510b6816d5e36e65a7bb1dcb63f /doc
parentc54efee90a60188a16ce18f927644d6505ecfd10 (diff)
[Docs] 'SSL_CTX_set_cert_store' ownership of 'store'
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/24375) (cherry picked from commit 987baef4fa54d268d7eaa93837a56398409698a1)
Diffstat (limited to 'doc')
-rw-r--r--doc/man3/SSL_CTX_set_cert_store.pod4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/man3/SSL_CTX_set_cert_store.pod b/doc/man3/SSL_CTX_set_cert_store.pod
index f1fef9e649..792d7c3faa 100644
--- a/doc/man3/SSL_CTX_set_cert_store.pod
+++ b/doc/man3/SSL_CTX_set_cert_store.pod
@@ -16,7 +16,9 @@ SSL_CTX_set_cert_store, SSL_CTX_set1_cert_store, SSL_CTX_get_cert_store - manipu
SSL_CTX_set_cert_store() sets/replaces the certificate verification storage
of B<ctx> to/with B<store>. If another X509_STORE object is currently
-set in B<ctx>, it will be X509_STORE_free()ed.
+set in B<ctx>, it will be X509_STORE_free()ed. SSL_CTX_set_cert_store() will
+take ownership of the B<store>, i.e., the call C<X509_STORE_free(store)> is no
+longer needed.
SSL_CTX_set1_cert_store() sets/replaces the certificate verification storage
of B<ctx> to/with B<store>. The B<store>'s reference count is incremented.