]> granicus.if.org Git - pdns/commitdiff
dnsdist: Fix a typo in one of the console error messages
authorRemi Gacogne <remi.gacogne@powerdns.com>
Mon, 11 Jun 2018 13:31:19 +0000 (15:31 +0200)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Mon, 11 Jun 2018 13:31:19 +0000 (15:31 +0200)
pdns/dnsdist-console.cc

index fb1598fca378290bbdbfe0582423f18351bcb830..b94be3ebe041b8f918d6ccb4f2bc1cc8f8379856 100644 (file)
@@ -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<uint32_t>::max()) {
-    cout << "Encrypted essage is too long to be sent to the server, "<< std::to_string(msgLen) << " > " << std::numeric_limits<uint32_t>::max() << endl;
+    cout << "Encrypted message is too long to be sent to the server, "<< std::to_string(msgLen) << " > " << std::numeric_limits<uint32_t>::max() << endl;
     return true;
   }