From: Otto Moerbeek Date: Tue, 10 Jan 2023 13:41:46 +0000 (+0100) Subject: Typo in comment X-Git-Tag: dnsdist-1.8.0-rc1~112^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00c48b6de4256f911b738086a2f6f50c952abad1;p=thirdparty%2Fpdns.git Typo in comment Co-authored-by: Peter van Dijk --- diff --git a/pdns/recursordist/pdns_recursor.cc b/pdns/recursordist/pdns_recursor.cc index 9f73f08a01..93c414dba0 100644 --- a/pdns/recursordist/pdns_recursor.cc +++ b/pdns/recursordist/pdns_recursor.cc @@ -277,7 +277,7 @@ LWResult::Result asendto(const char* data, size_t len, int flags, auto chain = MT->d_waiters.equal_range(pident, PacketIDBirthdayCompare()); for (; chain.first != chain.second; chain.first++) { - // Line below detected an issue with the two ways of ordering PackeIDs (birtday and non-birthday) + // Line below detected an issue with the two ways of ordering PacketIDs (birthday and non-birthday) assert(chain.first->key->domain == pident->domain); // don't chain onto existing chained waiter or a chain already processed if (chain.first->key->fd > -1 && !chain.first->key->closed) {