]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Maintenance: Fix two misspellings (#784)
authorAlex Rousskov <rousskov@measurement-factory.com>
Tue, 2 Mar 2021 22:06:33 +0000 (22:06 +0000)
committerSquid Anubis <squid-anubis@squid-cache.org>
Wed, 3 Mar 2021 21:50:16 +0000 (21:50 +0000)
These typos were caught by scripts/spell-check.sh but then merged anyway
due to a `git diff` status code misinterpretation bug in the CI scripts.

src/HttpHdrSc.cc
src/ssl/support.cc

index 8d62b6eb25a569b1f46f5d34a4cb500640676a65..b07c73f64aeb983c73a3c02c8aa6c6777e6a9cee 100644 (file)
@@ -300,7 +300,7 @@ HttpHdrSc::getMergedTarget(const char *ourtarget)
 
     /* W3C Edge Architecture Specification 1.0 section 3
      *
-     * "If more than one is targetted at a surrogate, the most specific applies.
+     * "If more than one is targeted at a surrogate, the most specific applies.
      *  For example,
      *    Surrogate-Control: max-age=60, no-store;abc
      *  The surrogate that identified itself as 'abc' would apply no-store;
index 424fa6324a346d517aece27e4687655d101f90d5..0db2e209290404aff14fc6ef45605f9c0930451b 100644 (file)
@@ -418,7 +418,7 @@ Ssl::ConfigurePeerVerification(Security::ContextPointer &ctx, const Security::Pa
         mode = SSL_VERIFY_NONE;
     }
     else if (flags & SSL_FLAG_CONDITIONAL_AUTH) {
-        debugs(83, DBG_PARSE_NOTE(3), "will request the client certificate but ignore its absense");
+        debugs(83, DBG_PARSE_NOTE(3), "will request the client certificate but ignore its absence");
         mode = SSL_VERIFY_PEER;
     }
     else {