summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarsten Heimrich <karsten.heimrich@qt.io>2019-03-06 11:54:59 +0100
committerKarsten Heimrich <karsten.heimrich@qt.io>2019-03-13 13:11:33 +0000
commit59031b6458e432b126ad9e2e84ab50a5c27950d1 (patch)
treeb91c7bf0aacd0660b638825d94b6c7bc1372bafc
parent95b330a090ec3854f04b556990251f94c14ecf88 (diff)
Fix operator== implementation
The individual address was missing from the comparison. Change-Id: I93d5030f79422371c5cc510917a36c6cd179b5e1 Reviewed-by: Sona Kurazyan <sona.kurazyan@qt.io> Reviewed-by: Karsten Heimrich <karsten.heimrich@qt.io>
-rw-r--r--src/knx/ssl/qknxsecureconfiguration.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/knx/ssl/qknxsecureconfiguration.cpp b/src/knx/ssl/qknxsecureconfiguration.cpp
index 4286fa6..5516bdb 100644
--- a/src/knx/ssl/qknxsecureconfiguration.cpp
+++ b/src/knx/ssl/qknxsecureconfiguration.cpp
@@ -429,6 +429,7 @@ bool QKnxSecureConfiguration::operator==(const QKnxSecureConfiguration &other) c
return d == other.d || (d->privateKey == other.d->privateKey
&& d->userId == other.d->userId
&& d->userPassword == other.d->userPassword
+ && d->ia == other.d->ia
&& d->deviceAuthenticationCode == other.d->deviceAuthenticationCode
&& d->keepAlive == other.d->keepAlive);
}