]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
spelling: contains
authorJosh Soref <2119212+jsoref@users.noreply.github.com>
Wed, 19 Nov 2025 19:10:22 +0000 (14:10 -0500)
committerJosh Soref <2119212+jsoref@users.noreply.github.com>
Thu, 20 Nov 2025 12:31:10 +0000 (07:31 -0500)
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
pdns/signingpipe.cc

index 5d081532d9caf96a018f0b10567187b58253c364..559d90c37b2b3c425eefa2e8618c406ce6b3c785 100644 (file)
@@ -112,7 +112,7 @@ bool dedupEqual(const DNSZoneRecord& a, const DNSZoneRecord &b)
 
 void ChunkedSigningPipe::dedupRRSet()
 {
-  // our set contains contains records for one type and one name, but might not be sorted otherwise
+  // our set contains records for one type and one name, but might not be sorted otherwise
   sort(d_rrsetToSign->begin(), d_rrsetToSign->end(), dedupLessThan);
   d_rrsetToSign->erase(unique(d_rrsetToSign->begin(), d_rrsetToSign->end(), dedupEqual), d_rrsetToSign->end());
 }