diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-08-01 14:38:28 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-08-01 14:40:00 (GMT) |
commit | c53c638015097569a2408ae93723bfe667f27ebc (patch) | |
tree | 44f5ee49a57ce70340cb661437c04068b47af54e /Swiften/Client | |
parent | 93d2190468d8dd42d18e1c1d0a30abffac76de22 (diff) | |
download | swift-c53c638015097569a2408ae93723bfe667f27ebc.zip swift-c53c638015097569a2408ae93723bfe667f27ebc.tar.bz2 |
Fixed typo.
Diffstat (limited to 'Swiften/Client')
-rw-r--r-- | Swiften/Client/ClientSession.cpp | 2 |
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; } |