]> granicus.if.org Git - pdns/commitdiff
spelling: qclasses
authorJosh Soref <jsoref@users.noreply.github.com>
Thu, 2 Feb 2017 10:27:29 +0000 (10:27 +0000)
committerJosh Soref <jsoref@users.noreply.github.com>
Thu, 2 Feb 2017 10:27:29 +0000 (10:27 +0000)
pdns/dnsparser.cc

index 28f723d8b899b7210003a4100c17a08b1d71a208..16d1b8aae973cf0eb76b08d44a7cb153e2e179b4 100644 (file)
@@ -160,7 +160,7 @@ std::unique_ptr<DNSRecordContent> DNSRecordContent::makeunique(uint16_t qtype, u
 DNSRecordContent* DNSRecordContent::mastermake(const DNSRecord &dr, PacketReader& pr, uint16_t oc) {
   // For opcode UPDATE and where the DNSRecord is an answer record, we don't care about content, because this is
   // not used within the prerequisite section of RFC2136, so - we can simply use unknownrecordcontent.
-  // For section 3.2.3, we do need content so we need to get it properly. But only for the correct Qclasses.
+  // For section 3.2.3, we do need content so we need to get it properly. But only for the correct QClasses.
   if (oc == Opcode::Update && dr.d_place == DNSResourceRecord::ANSWER && dr.d_class != 1)
     return new UnknownRecordContent(dr, pr);