From 7c25db36dc1b2f380d2a74677fe21df5548ecae4 Mon Sep 17 00:00:00 2001 From: Alex Rousskov Date: Tue, 2 Mar 2021 22:06:33 +0000 Subject: [PATCH] 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. --- src/HttpHdrSc.cc | 2 +- src/ssl/support.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 { -- 2.47.2