From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Wed, 19 Nov 2025 17:39:56 +0000 (-0500) Subject: spelling: separate X-Git-Tag: rec-5.4.0-alpha1~61^2~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9116de722c107abaa6a66092b302a062327525fb;p=thirdparty%2Fpdns.git spelling: separate Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- diff --git a/builder-support/post-build b/builder-support/post-build index c6fa584eb4..9cbb7ecbf1 100755 --- a/builder-support/post-build +++ b/builder-support/post-build @@ -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 diff --git a/pdns/ednscookies.hh b/pdns/ednscookies.hh index 829a234faa..d68e3a5cb0 100644 --- a/pdns/ednscookies.hh +++ b/pdns/ednscookies.hh @@ -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))); } diff --git a/pdns/recursordist/rec-rust-lib/rust/src/web.rs b/pdns/recursordist/rec-rust-lib/rust/src/web.rs index 6c6ef25cee..e473295e00 100644 --- a/pdns/recursordist/rec-rust-lib/rust/src/web.rs +++ b/pdns/recursordist/rec-rust-lib/rust/src/web.rs @@ -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? */