]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
spelling: on which the query was received
authorJosh Soref <2119212+jsoref@users.noreply.github.com>
Wed, 19 Nov 2025 19:13:11 +0000 (14:13 -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/recursordist/pdns_recursor.cc

index eca86a4812002bc52c31f9096b35a7a2f04ebbbd..c67684659d2f7a6659d5edf0af256f92e938ed06 100644 (file)
@@ -2189,7 +2189,7 @@ bool matchOTConditions(RecEventTrace& eventTrace, const std::unique_ptr<OpenTele
 }
 
 // fromaddr: the address from which the query is coming
-// destaddr: the address the query was received on
+// destaddr: the address on which the query was received
 // source: the address we assume the query is coming from, might be set by proxy protocol
 // destination: the address we assume the query was sent to, might be set by proxy protocol
 // mappedSource: the address we assume the query is coming from. Differs from source if table based mapping has been applied
@@ -2443,7 +2443,7 @@ static string* doProcessUDPQuestion(const std::string& question, const ComboAddr
   comboWriter->d_qhash = qhash;
   comboWriter->setRemote(fromaddr); // the address from which the query is coming
   comboWriter->setSource(source); // the address we assume the query is coming from, might be set by proxy protocol
-  comboWriter->setLocal(destaddr); // the address the query was received on
+  comboWriter->setLocal(destaddr); // the address on which the query was received
   comboWriter->setDestination(destination); // the address we assume the query is sent to, might be set by proxy protocol
   comboWriter->setMappedSource(mappedSource); // the address we assume the query is coming from. Differs from source if table-based mapping has been applied
   comboWriter->d_tcp = false;