From: Josh Soref Date: Thu, 2 Feb 2017 10:27:29 +0000 (+0000) Subject: spelling: qclasses X-Git-Tag: rec-4.1.0-alpha1~291^2~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89c46d185f6f295859a50fcd71e3fb1e6b8a003b;p=thirdparty%2Fpdns.git spelling: qclasses --- diff --git a/pdns/dnsparser.cc b/pdns/dnsparser.cc index 28f723d8b8..16d1b8aae9 100644 --- a/pdns/dnsparser.cc +++ b/pdns/dnsparser.cc @@ -160,7 +160,7 @@ std::unique_ptr 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);