From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Wed, 19 Nov 2025 19:10:22 +0000 (-0500) Subject: spelling: contains X-Git-Tag: rec-5.4.0-alpha1~61^2~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2099a7f53aa0af04082985a66cda785f0260685;p=thirdparty%2Fpdns.git spelling: contains Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- diff --git a/pdns/signingpipe.cc b/pdns/signingpipe.cc index 5d081532d9..559d90c37b 100644 --- a/pdns/signingpipe.cc +++ b/pdns/signingpipe.cc @@ -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()); }