From: Alex Rousskov Date: Tue, 2 Mar 2021 22:06:33 +0000 (+0000) Subject: Maintenance: Fix two misspellings (#784) X-Git-Tag: 4.15-20210522-snapshot~27 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7c25db36dc1b2f380d2a74677fe21df5548ecae4;p=thirdparty%2Fsquid.git Maintenance: Fix two misspellings (#784) 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. --- diff --git a/src/HttpHdrSc.cc b/src/HttpHdrSc.cc index 8d62b6eb25..b07c73f64a 100644 --- a/src/HttpHdrSc.cc +++ b/src/HttpHdrSc.cc @@ -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; diff --git a/src/ssl/support.cc b/src/ssl/support.cc index 424fa6324a..0db2e20929 100644 --- a/src/ssl/support.cc +++ b/src/ssl/support.cc @@ -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 {