From a99bea9d3bec8b90d2d9504e2f75db633c69409c Mon Sep 17 00:00:00 2001 From: the-wes Date: Fri, 5 Dec 2014 16:59:39 -0800 Subject: [PATCH] clarify protocol error message --- src/lib/client/Client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/client/Client.cpp b/src/lib/client/Client.cpp index a13052c0..4620116d 100644 --- a/src/lib/client/Client.cpp +++ b/src/lib/client/Client.cpp @@ -659,7 +659,7 @@ Client::handleHello(const Event&, void*) { SInt16 major, minor; if (!ProtocolUtil::readf(m_stream, kMsgHello, &major, &minor)) { - sendConnectionFailedEvent("Protocol error from server"); + sendConnectionFailedEvent("Protocol error from server, check encryption settings"); cleanupTimer(); cleanupConnection(); return;