diff options
author | Peter Hartmann <peter.hartmann@nokia.com> | 2011-04-15 08:19:55 (GMT) |
---|---|---|
committer | Qt Commercial Integration <QtCommercial@digia.com> | 2012-01-31 10:24:56 (GMT) |
commit | aabc492f57c92509d9e321547fe1ee69e5925b20 (patch) | |
tree | b127368ca4bf7aed0b4cdd0eb47dee7a86c2a80e /src/network | |
parent | dea888b354ec53e35e15ddc5a0143e4861e5d30b (diff) | |
download | Qt-aabc492f57c92509d9e321547fe1ee69e5925b20.zip Qt-aabc492f57c92509d9e321547fe1ee69e5925b20.tar.gz Qt-aabc492f57c92509d9e321547fe1ee69e5925b20.tar.bz2 |
QSslConfiguration: fix equals operator
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/ssl/qsslconfiguration.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/ssl/qsslconfiguration.cpp b/src/network/ssl/qsslconfiguration.cpp index a1f6918..27bee6d 100644 --- a/src/network/ssl/qsslconfiguration.cpp +++ b/src/network/ssl/qsslconfiguration.cpp @@ -176,7 +176,7 @@ bool QSslConfiguration::operator==(const QSslConfiguration &other) const d->privateKey == other.d->privateKey && d->sessionCipher == other.d->sessionCipher && d->ciphers == other.d->ciphers && - d->caCertificates == d->caCertificates && + d->caCertificates == other.d->caCertificates && d->protocol == other.d->protocol && d->peerVerifyMode == other.d->peerVerifyMode && d->peerVerifyDepth == other.d->peerVerifyDepth; |