]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
spelling: separate
authorJosh Soref <2119212+jsoref@users.noreply.github.com>
Wed, 19 Nov 2025 17:39:56 +0000 (12:39 -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>
builder-support/post-build
pdns/ednscookies.hh
pdns/recursordist/rec-rust-lib/rust/src/web.rs

index c6fa584eb462a5676890008578296e415f0467c1..9cbb7ecbf1a6bc411da4d8ce59843beeb74a67c8 100755 (executable)
@@ -17,7 +17,7 @@ if ! $tar --version | grep -q GNU; then
     exit 1
 fi
 
-# pdns (auth) is handled seperately, it needs a special find condition which is hard to do with
+# pdns (auth) is handled separately, it needs a special find condition which is hard to do with
 # vars, as we don't want the asterisks to expand prematurely. So repeat the body of the loop below
 # with a find condition for pdns to exclude accidentally matching pdns-recursor*.
 for prog in pdns-recursor dnsdist; do
index 829a234faa9a132504148f0ae7299f4d5b8dfb46..d68e3a5cb09ecf9cd124eed6df47621d08d14f2b 100644 (file)
@@ -46,7 +46,7 @@ struct EDNSCookiesOpt
   {
     // RFC7873 section 5.2.2
     //    In summary, valid cookie lengths are 8 and 16 to 40 inclusive.
-    // That's the total size. We account for client and server size seperately
+    // That's the total size. We account for client and server size separately
     return (
       client.size() == 8 && (server.empty() || (server.size() >= 8 && server.size() <= 32)));
   }
index 6c6ef25cee810927dd8a3178da572cd6919d71f8..e473295e00c1695ca72351804b0f09dc1cb0c3a2 100644 (file)
@@ -25,7 +25,7 @@ TODO
 - Table based routing?
 - Ripping out yahttp stuff, providing some basic classes only. ATM we do use a few yahttp include files (but no .cc)
 - Some classes (NetmaskGroup, ComboAddress) need a UniquePtr Wrapper to keep them opaque (iputils
-  cannot be included without big headaches in bridge.hh at the moment). We could seperate
+  cannot be included without big headaches in bridge.hh at the moment). We could separate
   NetmaskGroup, but I expect ComboAddress to not work as it is union.
 - Avoid unsafe? Can it be done?
 */