diff options
author | Martin Petersson <Martin.Petersson@nokia.com> | 2012-05-22 10:37:05 +0200 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-05-22 11:55:08 +0200 |
commit | 3484489af72c0cad3fac28f7c8b953c32e6feb9a (patch) | |
tree | 664664f57ba249336f6bf992e0559fbc2edd96ec /src/network/access | |
parent | 11a1383d54fd479c4fb3d2a96b847732a01dcce8 (diff) | |
download | qt4-tools-3484489af72c0cad3fac28f7c8b953c32e6feb9a.tar.gz |
QNetwork: fix compilation with no openssl
Change-Id: Id637dd1155c46ffc75563812b8c9d5f062e76e22
Reviewed-by: Sergio Ahumada <sergio.ahumada@nokia.com>
Reviewed-by: Richard J. Moore <rich@kde.org>
Diffstat (limited to 'src/network/access')
-rw-r--r-- | src/network/access/qhttpnetworkconnectionchannel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/access/qhttpnetworkconnectionchannel.cpp b/src/network/access/qhttpnetworkconnectionchannel.cpp index 52dfc65ebb..58e7bccecc 100644 --- a/src/network/access/qhttpnetworkconnectionchannel.cpp +++ b/src/network/access/qhttpnetworkconnectionchannel.cpp @@ -1080,7 +1080,7 @@ void QHttpNetworkConnectionChannel::_q_error(QAbstractSocket::SocketError socket // in memory and we will not recieve more data on the socket. reply->setReadBufferSize(0); _q_receiveReply(); -#ifndef QT_NO_SSL +#ifndef QT_NO_OPENSSL if (ssl) { // QT_NO_OPENSSL. The QSslSocket can still have encrypted bytes in the plainsocket. // So we need to check this if the socket is a QSslSocket. When the socket is flushed |