summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorAkshat Maheshwari <akshatmaheshwari1995@gmail.com>2022-09-13 12:33:21 +0530
committerTomas Mraz <tomas@openssl.org>2022-09-15 17:07:05 +0200
commitedb271ee5d68f31260da37e9ad5ed2f9f4dd7274 (patch)
tree51031a697f700d664f30d1596c0411e4fc617449 /doc
parent48963ff6d0d07648e09e63d2dca9fb6069241f42 (diff)
Fix a typo in the function name
X509_STORE_load_locations_ex() calls X509_STORE_load_file_ex() and X509_STORE_load_path(), there's no such function name as X509_STORE_load_dir(). CLA: trivial Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19202)
Diffstat (limited to 'doc')
-rw-r--r--doc/man3/X509_STORE_add_cert.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man3/X509_STORE_add_cert.pod b/doc/man3/X509_STORE_add_cert.pod
index 642da09ff2..9cfe891c23 100644
--- a/doc/man3/X509_STORE_add_cert.pod
+++ b/doc/man3/X509_STORE_add_cert.pod
@@ -115,7 +115,7 @@ X509_STORE_load_store() is similar to X509_STORE_load_store_ex() but
uses NULL for the library context I<libctx> and property query I<propq>.
X509_STORE_load_locations_ex() combines
-X509_STORE_load_file_ex() and X509_STORE_load_dir() for a given file
+X509_STORE_load_file_ex() and X509_STORE_load_path() for a given file
and/or directory path.
It is permitted to specify just a file, just a directory, or both
paths.