summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarsten Heimrich <karsten.heimrich@qt.io>2019-03-28 15:30:39 +0100
committerKarsten Heimrich <karsten.heimrich@qt.io>2019-03-29 11:54:43 +0000
commite77a7509190c455487227f6af0131d415d31901b (patch)
tree1266bdbaaef826b960d629743ea99c0bb837e84f
parente6aeb990e3a6ec1aa936bdc81109d86da6840949 (diff)
Fix missing field in the comparison operator
Change-Id: I8089073f7845c3ca80ae56808588b57fbfa1817c Reviewed-by: Sona Kurazyan <sona.kurazyan@qt.io> Reviewed-by: Karsten Heimrich <karsten.heimrich@qt.io>
-rw-r--r--src/knx/netip/qknxnetipsecureconfiguration.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/knx/netip/qknxnetipsecureconfiguration.cpp b/src/knx/netip/qknxnetipsecureconfiguration.cpp
index 6a75fdb..8b2d03b 100644
--- a/src/knx/netip/qknxnetipsecureconfiguration.cpp
+++ b/src/knx/netip/qknxnetipsecureconfiguration.cpp
@@ -451,6 +451,7 @@ void QKnxNetIpSecureConfiguration::swap(QKnxNetIpSecureConfiguration &other) Q_D
bool QKnxNetIpSecureConfiguration::operator==(const QKnxNetIpSecureConfiguration &other) const
{
return d == other.d || (d->privateKey == other.d->privateKey
+ && d->publicKey == other.d->publicKey
&& d->host == other.d->host
&& d->userId == other.d->userId
&& d->userPassword == other.d->userPassword