From: Remi Gacogne Date: Mon, 11 Jun 2018 13:31:19 +0000 (+0200) Subject: dnsdist: Fix a typo in one of the console error messages X-Git-Tag: dnsdist-1.3.1~34^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3af57c9a2e96b2e444299c3177dd1a05990f25c7;p=pdns dnsdist: Fix a typo in one of the console error messages --- diff --git a/pdns/dnsdist-console.cc b/pdns/dnsdist-console.cc index fb1598fca..b94be3ebe 100644 --- a/pdns/dnsdist-console.cc +++ b/pdns/dnsdist-console.cc @@ -79,7 +79,7 @@ static bool sendMessageToServer(int fd, const std::string& line, SodiumNonce& re string msg = sodEncryptSym(line, g_consoleKey, writingNonce); const auto msgLen = msg.length(); if (msgLen > std::numeric_limits::max()) { - cout << "Encrypted essage is too long to be sent to the server, "<< std::to_string(msgLen) << " > " << std::numeric_limits::max() << endl; + cout << "Encrypted message is too long to be sent to the server, "<< std::to_string(msgLen) << " > " << std::numeric_limits::max() << endl; return true; }