From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Wed, 19 Nov 2025 17:02:42 +0000 (-0500) Subject: spelling: exception X-Git-Tag: rec-5.4.0-alpha1~61^2~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6cfd4d1d3af56a33b3434a78d9907773ffee0738;p=thirdparty%2Fpdns.git spelling: exception Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- diff --git a/pdns/recursordist/pdns_recursor.cc b/pdns/recursordist/pdns_recursor.cc index dc3bed6a89..0761ef4d5a 100644 --- a/pdns/recursordist/pdns_recursor.cc +++ b/pdns/recursordist/pdns_recursor.cc @@ -2316,7 +2316,7 @@ static string* doProcessUDPQuestion(const std::string& question, const ComboAddr } catch (const MOADNSException& moadnsexception) { if (g_logCommonErrors) { - g_slogudpin->error(moadnsexception.what(), "Error parsing a query packet for tag determination", "qname", Logging::Loggable(qname), "excepion", Logging::Loggable("MOADNSException")); + g_slogudpin->error(moadnsexception.what(), "Error parsing a query packet for tag determination", "qname", Logging::Loggable(qname), "exception", Logging::Loggable("MOADNSException")); } } catch (const std::exception& stdException) { diff --git a/pdns/recursordist/rec-main.cc b/pdns/recursordist/rec-main.cc index 9b126e956d..6dfbfd18bd 100644 --- a/pdns/recursordist/rec-main.cc +++ b/pdns/recursordist/rec-main.cc @@ -2362,7 +2362,7 @@ static void handlePipeRequest(int fileDesc, FDMultiplexer::funcparam_t& /* var * } catch (const MOADNSException& moadnsexception) { if (g_logCommonErrors) { - g_slog->withName("runtime")->error(moadnsexception.what(), "PIPE function created an exception", "excepion", Logging::Loggable("MOADNSException")); + g_slog->withName("runtime")->error(moadnsexception.what(), "PIPE function created an exception", "exception", Logging::Loggable("MOADNSException")); } } catch (const std::exception& stdException) { diff --git a/pdns/recursordist/rec-tcp.cc b/pdns/recursordist/rec-tcp.cc index 91cca76939..0172e3ed0a 100644 --- a/pdns/recursordist/rec-tcp.cc +++ b/pdns/recursordist/rec-tcp.cc @@ -368,7 +368,7 @@ static void doProcessTCPQuestion(std::unique_ptr& comboWriter, s } catch (const MOADNSException& moadnsexception) { if (g_logCommonErrors) { - g_slogtcpin->error(moadnsexception.what(), "Error parsing a query packet for tag determination", "qname", Logging::Loggable(qname), "excepion", Logging::Loggable("MOADNSException")); + g_slogtcpin->error(moadnsexception.what(), "Error parsing a query packet for tag determination", "qname", Logging::Loggable(qname), "exception", Logging::Loggable("MOADNSException")); } } catch (const std::exception& stdException) {