From: Christian Ratzenhofer Date: Tue, 23 Dec 2014 22:38:47 +0000 (+0100) Subject: Set the version of the QDataStream in ClientAuthHandler X-Git-Tag: 0.12-beta1~37^2 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=b8b4c167d2da415f756e05e269a575595d04d6c7;ds=sidebyside Set the version of the QDataStream in ClientAuthHandler --- diff --git a/src/client/clientauthhandler.cpp b/src/client/clientauthhandler.cpp index d5112d16..15652dd4 100644 --- a/src/client/clientauthhandler.cpp +++ b/src/client/clientauthhandler.cpp @@ -169,6 +169,7 @@ void ClientAuthHandler::onSocketConnected() _probing = true; QDataStream stream(socket()); // stream handles the endianness for us + stream.setVersion(QDataStream::Qt_4_2); quint32 magic = Protocol::magic; #ifdef HAVE_SSL