summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-08-01 14:38:28 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-08-01 14:40:00 (GMT)
commitc53c638015097569a2408ae93723bfe667f27ebc (patch)
tree44f5ee49a57ce70340cb661437c04068b47af54e /Swiften/Client/ClientSession.cpp
parent93d2190468d8dd42d18e1c1d0a30abffac76de22 (diff)
downloadswift-c53c638015097569a2408ae93723bfe667f27ebc.zip
swift-c53c638015097569a2408ae93723bfe667f27ebc.tar.bz2
Fixed typo.
Diffstat (limited to 'Swiften/Client/ClientSession.cpp')
-rw-r--r--Swiften/Client/ClientSession.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/Client/ClientSession.cpp b/Swiften/Client/ClientSession.cpp
index 88b3d5a..2c130c3 100644
--- a/Swiften/Client/ClientSession.cpp
+++ b/Swiften/Client/ClientSession.cpp
@@ -255,7 +255,7 @@ void ClientSession::sendSessionStart() {
}
bool ClientSession::checkState(State state) {
- if (state != state) {
+ if (this->state != state) {
finishSession(Error::UnexpectedElementError);
return false;
}