summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2021-05-12 09:25:52 +0200
committerStefan Eissing <icing@apache.org>2021-05-12 09:25:52 +0200
commit958c12bd6a4f2339e380bbadd6238a139166bdd7 (patch)
treee4b7f1c7a19561270df0a2ee11ce4e7abf776348
parentAllow the tunnelled connections to report the (diff)
downloadapache2-958c12bd6a4f2339e380bbadd6238a139166bdd7.tar.xz
apache2-958c12bd6a4f2339e380bbadd6238a139166bdd7.zip
* Spelling fixes after review by @bigio.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1889788 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--changes-entries/ocsp_stapling_core.txt2
-rw-r--r--modules/md/md_reg.h2
-rw-r--r--modules/ssl/ssl_util_ssl.c2
-rw-r--r--modules/ssl/ssl_util_ssl.h2
-rw-r--r--server/ssl.c8
5 files changed, 8 insertions, 8 deletions
diff --git a/changes-entries/ocsp_stapling_core.txt b/changes-entries/ocsp_stapling_core.txt
index 4830b23d6a..c07cd3e77e 100644
--- a/changes-entries/ocsp_stapling_core.txt
+++ b/changes-entries/ocsp_stapling_core.txt
@@ -16,5 +16,5 @@
OCSP, it falls back to its own (if configured) stapling implementation.
3. mod_md registers itself at the core hooks for OCSP provisioning. Depending
on configuration, it will accept registrations of its own certificates only,
- all certficates or none.
+ all certificates or none.
[Stefan Eissing]
diff --git a/modules/md/md_reg.h b/modules/md/md_reg.h
index 78c5b023e8..46034b0fe6 100644
--- a/modules/md/md_reg.h
+++ b/modules/md/md_reg.h
@@ -124,7 +124,7 @@ apr_status_t md_reg_get_cred_files(const char **pkeyfile, const char **pcertfile
const md_t *md, struct md_pkey_spec_t *spec, apr_pool_t *p);
/**
- * Synchronise the give master mds with the store.
+ * Synchronize the given master mds with the store.
*/
apr_status_t md_reg_sync_start(md_reg_t *reg, apr_array_header_t *master_mds, apr_pool_t *p);
diff --git a/modules/ssl/ssl_util_ssl.c b/modules/ssl/ssl_util_ssl.c
index f3e9ee62a4..2b2d379abb 100644
--- a/modules/ssl/ssl_util_ssl.c
+++ b/modules/ssl/ssl_util_ssl.c
@@ -530,7 +530,7 @@ void modssl_set_reneg_state(SSLConnRec *sslconn, modssl_reneg_state state)
/* _________________________________________________________________
**
-** Certficate/Key Stuff
+** Certificate/Key Stuff
** _________________________________________________________________
*/
diff --git a/modules/ssl/ssl_util_ssl.h b/modules/ssl/ssl_util_ssl.h
index 0f01128528..443c1b7ee7 100644
--- a/modules/ssl/ssl_util_ssl.h
+++ b/modules/ssl/ssl_util_ssl.h
@@ -83,7 +83,7 @@ char *modssl_SSL_SESSION_id2sz(IDCONST unsigned char *, int, char *, int);
* called for both cases. */
char *modssl_bio_free_read(apr_pool_t *p, BIO *bio);
-/* Read a single certificate and its private key from the give string in PEM format.
+/* Read a single certificate and its private key from the given string in PEM format.
* If `key_pem` is NULL, it will expect the key in `cert_pem`.
*/
apr_status_t modssl_read_cert(apr_pool_t *p,
diff --git a/server/ssl.c b/server/ssl.c
index 1f4be8d6aa..d2d9df4ee0 100644
--- a/server/ssl.c
+++ b/server/ssl.c
@@ -65,8 +65,8 @@ static APR_OPTIONAL_FN_TYPE(ssl_is_https) *module_ssl_is_https;
static int ssl_is_https(conn_rec *c)
{
- /* Someone retrieved the optional function., not knowning about the
- * new API. We redirect them to what they should have inoked. */
+ /* Someone retrieved the optional function., not knowing about the
+ * new API. We redirect them to what they should have invoked. */
return ap_ssl_conn_is_ssl(c);
}
@@ -90,8 +90,8 @@ static const char *ssl_var_lookup(apr_pool_t *p, server_rec *s,
conn_rec *c, request_rec *r,
const char *name)
{
- /* Someone retrieved the optional function., not knowning about the
- * new API. We redirect them to what they should have inoked. */
+ /* Someone retrieved the optional function., not knowing about the
+ * new API. We redirect them to what they should have invoked. */
return ap_ssl_var_lookup(p, s, c, r, name);
}