]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
spelling: will
authorJosh Soref <2119212+jsoref@users.noreply.github.com>
Wed, 19 Nov 2025 17:47:35 +0000 (12:47 -0500)
committerJosh Soref <2119212+jsoref@users.noreply.github.com>
Thu, 20 Nov 2025 12:32:42 +0000 (07:32 -0500)
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
pdns/recursordist/rec-rust-lib/table.py
pdns/recursordist/syncres.cc
pdns/recursordist/test-syncres_cc4.cc

index 7b7989de85acc219161c68472e20875c1b9259ef..febd0c6500d16f4a32d267600fd372c26ebddde2 100644 (file)
@@ -3555,7 +3555,7 @@ Enable DNS cookies (:rfc:`7873`, :rfc:`9018`) when contacting authoritative serv
         'default': '',
         'help': 'Addresses (with optional port) of authoritative servers that do not support cookies',
         'doc': '''
-Addresses of servers that do not properly support DNS cookies (:rfc:`7873`, :rfc:`9018`). Recursor wil not even try to probe these servers for cookie support. If no port is specified port 53 is used.
+Addresses of servers that do not properly support DNS cookies (:rfc:`7873`, :rfc:`9018`). Recursor will not even try to probe these servers for cookie support. If no port is specified port 53 is used.
 ''',
         'versionadded': '5.4.0',
     },
index 3e8d907c5c0b8bb0f174cb76cc7723e3d4c36bd7..e9e47d04de9f5cd0d804367d1a56395e1ce117fb 100644 (file)
@@ -1620,7 +1620,7 @@ int SyncRes::doResolve(const DNSName& qname, const QType qtype, vector<DNSRecord
   try {
     // The cache lookup below can have three types of result:
     // Case 1: successful. In that case the records will be added to the end result below and we're done.
-    // Case 2: unsuccessful. In that case the records in retq wil be discarded. E.g. there
+    // Case 2: unsuccessful. In that case the records in retq will be discarded. E.g. there
     // might be records as the lookup found a CNAME chain, but the target is missing from the cache.
     // Case 3: an exception is thrown, in that case we're still interested in the (partial) results in retq.
     // This can e.g. happen on a too-long CNAME chain.
index daf52d2c4c51dc3f06fdb88a46ce2b842033d114..cea74caef87293e71c4714acc323b6ceceff4043 100644 (file)
@@ -535,7 +535,7 @@ BOOST_AUTO_TEST_CASE(test_dnssec_rrsig_extreme_timestamps)
 
   pdns::validation::ValidationContext validationContext;
   time_t now = time(nullptr);
-  // Case 1: interpretion depends on current time, test below will start to fail around 1970 + 68 = 2038 as it wil be interpeted as the 3rd case
+  // Case 1: interpretion depends on current time, test below will start to fail around 1970 + 68 = 2038 as it will be interpeted as the 3rd case
   BOOST_CHECK(validateWithKeySet(now, qname, recordcontents, sigs, keyset, std::nullopt, validationContext) == vState::BogusSignatureExpired);
   BOOST_CHECK_EQUAL(validationContext.d_validationsCounter, 0U);
 
@@ -545,7 +545,7 @@ BOOST_AUTO_TEST_CASE(test_dnssec_rrsig_extreme_timestamps)
   BOOST_CHECK_EQUAL(validationContext.d_validationsCounter, 0U);
 
   // Case 3: we're in 2038
-  now = 0xffff0000; // inception (0) wil be interpreted as being in the future
+  now = 0xffff0000; // inception (0) will be interpreted as being in the future
   BOOST_CHECK(validateWithKeySet(now, qname, recordcontents, sigs, keyset, std::nullopt, validationContext) == vState::BogusSignatureNotYetValid);
   BOOST_CHECK_EQUAL(validationContext.d_validationsCounter, 0U);
 }