summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChristophe Jaillet <jailletc36@apache.org>2021-09-05 07:51:55 +0000
committerChristophe Jaillet <jailletc36@apache.org>2021-09-05 07:51:55 +0000
commit0a81ce335ff877db6cd3d8c57598c10f9134ed59 (patch)
treef2efebdaba9cbead53a56b7e05e2b282c9cfd0cf /include
parent0df673fcce55252b1427d8d891f1639b51d71bf1 (diff)
downloadhttpd-0a81ce335ff877db6cd3d8c57598c10f9134ed59.tar.gz
Fix some typo and doxygen issues.
s/and array/an array/ Missing 's' so that @param match the names of the parameters of the function [skip ci] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1892917 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/http_ssl.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/http_ssl.h b/include/http_ssl.h
index f4c548bf4e..46f32a8134 100644
--- a/include/http_ssl.h
+++ b/include/http_ssl.h
@@ -123,8 +123,8 @@ AP_DECLARE(const char *) ap_ssl_var_lookup(apr_pool_t *p, server_rec *s,
*
* @param s the server certificates are collected for
* @param p the pool to use for allocations
- * @param cert_file and array of const char* with the path to the certificate chain
- * @param key_file and array of const char* with the path to the private key file
+ * @param cert_files an array of const char* with the path to the certificate chain
+ * @param key_files an array of const char* with the path to the private key file
* @return OK if files were added, DECLINED if not, or other for error.
*/
@@ -140,8 +140,8 @@ AP_DECLARE_HOOK(int, ssl_add_cert_files, (server_rec *s, apr_pool_t *p,
*
* @param s the server certificates are collected for
* @param p the pool to use for allocations
- * @param cert_file and array of const char* with the path to the certificate chain
- * @param key_file and array of const char* with the path to the private key file
+ * @param cert_files an array of const char* with the path to the certificate chain
+ * @param key_files an array of const char* with the path to the private key file
*/
AP_DECLARE(apr_status_t) ap_ssl_add_cert_files(server_rec *s, apr_pool_t *p,
apr_array_header_t *cert_files,
@@ -155,8 +155,8 @@ AP_DECLARE(apr_status_t) ap_ssl_add_cert_files(server_rec *s, apr_pool_t *p,
*
* @param s the server certificates are collected for
* @param p the pool to use for allocations
- * @param cert_file and array of const char* with the path to the certificate chain
- * @param key_file and array of const char* with the path to the private key file
+ * @param cert_files an array of const char* with the path to the certificate chain
+ * @param key_files an array of const char* with the path to the private key file
* @return OK if files were added, DECLINED if not, or other for error.
*/
AP_DECLARE_HOOK(int, ssl_add_fallback_cert_files, (server_rec *s, apr_pool_t *p,
@@ -173,8 +173,8 @@ AP_DECLARE_HOOK(int, ssl_add_fallback_cert_files, (server_rec *s, apr_pool_t *p,
*
* @param s the server certificates are collected for
* @param p the pool to use for allocations
- * @param cert_file and array of const char* with the path to the certificate chain
- * @param key_file and array of const char* with the path to the private key file
+ * @param cert_files an array of const char* with the path to the certificate chain
+ * @param key_files an array of const char* with the path to the private key file
*/
AP_DECLARE(apr_status_t) ap_ssl_add_fallback_cert_files(server_rec *s, apr_pool_t *p,
apr_array_header_t *cert_files,