summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChristophe Jaillet <jailletc36@apache.org>2022-05-08 12:31:31 +0000
committerChristophe Jaillet <jailletc36@apache.org>2022-05-08 12:31:31 +0000
commitff57ac59b37ee36b86e899c174681af5c3aeb930 (patch)
treee1ad46057cc01d5f2ce48e5fb794a8bb171b590d /include
parent7c4343e26afd1e63839841286948cc6f112e652c (diff)
downloadhttpd-ff57ac59b37ee36b86e899c174681af5c3aeb930.tar.gz
Fix some typo
[skip ci] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1900691 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/http_ssl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/http_ssl.h b/include/http_ssl.h
index e9fb0efd56..2e052c5ef3 100644
--- a/include/http_ssl.h
+++ b/include/http_ssl.h
@@ -104,7 +104,7 @@ AP_DECLARE_HOOK(const char *,ssl_var_lookup,
/**
* Lookup an SSL related variable for the server/connection/request or a global
* value when all those parameters are set to NULL. Pool and name must always be
- * provided and the returned value (if not NULL) will be allocated fromt he pool.
+ * provided and the returned value (if not NULL) will be allocated from the pool.
* @param p The pool to allocate a returned value in, MUST be provided
* @param s The server to inquire a value for, maybe NULL
* @param c The current connection, maybe NULL
@@ -118,7 +118,7 @@ AP_DECLARE(const char *) ap_ssl_var_lookup(apr_pool_t *p, server_rec *s,
/**
* Register to provide certificate/key files for servers. Certificate files are
- * exepcted to contain the certificate chain, beginning with the server's certificate,
+ * expected to contain the certificate chain, beginning with the server's certificate,
* excluding the trust anchor, in PEM format.
* They must be accompanied by a private key file, also in PEM format.
*