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:09:51 +0200
commit1ed89de84f6e7b346c34c88ce4589216611ee505 (patch)
treed1fb59631f101c9f0a1886460ee804ac82ce150a /doc
parentd83c465754ab4bfeb33718ad5ac851388079daba (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) (cherry picked from commit edb271ee5d68f31260da37e9ad5ed2f9f4dd7274)
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 f53a345621..419690d3c0 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.