You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2022/05/08 12:31:31 UTC

svn commit: r1900691 - /httpd/httpd/trunk/include/http_ssl.h

Author: jailletc36
Date: Sun May  8 12:31:31 2022
New Revision: 1900691

URL: http://svn.apache.org/viewvc?rev=1900691&view=rev
Log:
Fix some typo

[skip ci]

Modified:
    httpd/httpd/trunk/include/http_ssl.h

Modified: httpd/httpd/trunk/include/http_ssl.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/http_ssl.h?rev=1900691&r1=1900690&r2=1900691&view=diff
==============================================================================
--- httpd/httpd/trunk/include/http_ssl.h (original)
+++ httpd/httpd/trunk/include/http_ssl.h Sun May  8 12:31:31 2022
@@ -104,7 +104,7 @@ AP_DECLARE_HOOK(const char *,ssl_var_loo
 /**
  * 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_look
 
 /**
  * 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.
  *