From: Stefan Eissing Date: Wed, 12 May 2021 07:25:52 +0000 (+0000) Subject: * Spelling fixes after review by @bigio. X-Git-Tag: 2.5.0-alpha2-ci-test-only~950 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=958c12bd6a4f2339e380bbadd6238a139166bdd7;p=thirdparty%2Fapache%2Fhttpd.git * Spelling fixes after review by @bigio. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1889788 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/changes-entries/ocsp_stapling_core.txt b/changes-entries/ocsp_stapling_core.txt index 4830b23d6aa..c07cd3e77e2 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 78c5b023e82..46034b0fe68 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 f3e9ee62a4d..2b2d379abb4 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 0f01128528a..443c1b7ee73 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 1f4be8d6aa4..d2d9df4ee0e 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); }