]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
spelling: referrals
authorJosh Soref <jsoref@users.noreply.github.com>
Wed, 10 Mar 2021 15:30:36 +0000 (10:30 -0500)
committerJosh Soref <jsoref@users.noreply.github.com>
Fri, 12 Mar 2021 14:22:45 +0000 (09:22 -0500)
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
.github/actions/spell-check/allow.txt
pdns/packethandler.cc

index 6810af20bd38040b744cd04885b96aa0bb815ac5..79c03b35a2c3a7252745d9c396c7dfd418a122ab 100644 (file)
@@ -3207,8 +3207,6 @@ redirectresponses
 redistributors
 refcnt
 refcursor
-referals
-refferals
 refuseemptyar
 refusefouran
 refusenoan
index 773b90a84fdd5e075ee39ffde601d6904894e071..d3e3bf4f8f9c1c8e6924b9df48367aa2f2158ac3 100644 (file)
@@ -1508,7 +1508,7 @@ std::unique_ptr<DNSPacket> 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<DNSPacket> 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;