From: Josh Soref Date: Wed, 10 Mar 2021 15:30:36 +0000 (-0500) Subject: spelling: referrals X-Git-Tag: rec-4.5.0-beta1~30^2~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=54f7bb1d0144315535ab056d2aeecb80349ee80f;p=thirdparty%2Fpdns.git spelling: referrals Signed-off-by: Josh Soref --- diff --git a/.github/actions/spell-check/allow.txt b/.github/actions/spell-check/allow.txt index 6810af20bd..79c03b35a2 100644 --- a/.github/actions/spell-check/allow.txt +++ b/.github/actions/spell-check/allow.txt @@ -3207,8 +3207,6 @@ redirectresponses redistributors refcnt refcursor -referals -refferals refuseemptyar refusefouran refusenoan diff --git a/pdns/packethandler.cc b/pdns/packethandler.cc index 773b90a84f..d3e3bf4f8f 100644 --- a/pdns/packethandler.cc +++ b/pdns/packethandler.cc @@ -1508,7 +1508,7 @@ std::unique_ptr PacketHandler::doQuestion(DNSPacket& p) for(auto& loopRR: rrset) { // In a dnssec capable backend auth=true means, there is no delegation at // or above this qname in this zone (for DS queries). Without a delegation, - // at or above this level, it is pointless to search for refferals. + // at or above this level, it is pointless to search for referrals. if(loopRR.auth) { doReferral = false; break; @@ -1517,7 +1517,7 @@ std::unique_ptr PacketHandler::doQuestion(DNSPacket& p) } else { for(auto& loopRR: rrset) { // In a non dnssec capable backend auth is always true, so our only option - // is, always look for referals. Unless there is a direct match for DS. + // is, always look for referrals. Unless there is a direct match for DS. if(loopRR.dr.d_type == QType::DS) { doReferral = false; break;