function names recently changed - consistency.
authorRalf S. Engelschall <rse@openssl.org>
Mon, 22 Mar 1999 15:50:34 +0000 (15:50 +0000)
committerRalf S. Engelschall <rse@openssl.org>
Mon, 22 Mar 1999 15:50:34 +0000 (15:50 +0000)
CHANGES
ssl/ssl_cert.c

diff --git a/CHANGES b/CHANGES
index cd7a84a1eb5487a07b2537219c65ad5e66d35ff6..c0962e8ecaa1608121edac248fbef2f81129a8f1 100644 (file)
--- a/CHANGES
+++ b/CHANGES
      unsigned to signed types: this was killing the Win32 compile.
      [Steve Henson]
 
-  *) Add new certificate file to stack functions, SSL_add_cert_file_to_stack()
-     and SSL_add_cert_dir_to_stack(). These largely supplant
-     SSL_load_client_CA_file(), and can be used to add multiple certs easily to
-     a stack (usually this is then handed to SSL_CTX_set_client_CA_list()).
+  *) Add new certificate file to stack functions,
+     SSL_add_dir_cert_subjects_to_stack() and
+     SSL_add_file_cert_subjects_to_stack().  These largely supplant
+     SSL_load_client_CA_file(), and can be used to add multiple certs easily
+     to a stack (usually this is then handed to SSL_CTX_set_client_CA_list()).
      This means that Apache-SSL and similar packages don't have to mess around
      to add as many CAs as they want to the preferred list.
      [Ben Laurie]
index cc3df568303bb4da481019ad20b118a930b637ef..f50de34a065b29c5116436c28b25c0688af0d694 100644 (file)
@@ -425,7 +425,7 @@ err:
  * \param stack the stack to append to.
  * \param dir the directory to append from. All files in this directory will be
  * examined as potential certs. Any that are acceptable to
- * SSL_add_cert_file_to_stack() that are not already in the stack will be
+ * SSL_add_dir_cert_subjects_to_stack() that are not already in the stack will be
  * included.
  * \return 1 for success, 0 for failure. Note that in the case of failure some
  * certs may have been added to \c stack.