diff options
author | Remko Tronçon <git@el-tramo.be> | 2012-11-12 20:05:12 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2012-11-12 20:18:11 (GMT) |
commit | 9b83adf9eb38d10f8cd1108d4c608117a1f8459d (patch) | |
tree | 60924e1cf6137e78ef26366a1f088bf851852ffc /Swiften/SASL | |
parent | a64db9d0cbe8b838bd3d5277a2de1f9672b4b843 (diff) | |
download | swift-contrib-9b83adf9eb38d10f8cd1108d4c608117a1f8459d.zip swift-contrib-9b83adf9eb38d10f8cd1108d4c608117a1f8459d.tar.bz2 |
Removing unused variable.
Change-Id: I0338404e1437cdcf1947cd73d90455cde75c7e56
Diffstat (limited to 'Swiften/SASL')
-rw-r--r-- | Swiften/SASL/SCRAMSHA1ClientAuthenticator.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Swiften/SASL/SCRAMSHA1ClientAuthenticator.cpp b/Swiften/SASL/SCRAMSHA1ClientAuthenticator.cpp index 7842b4f..98460b1 100644 --- a/Swiften/SASL/SCRAMSHA1ClientAuthenticator.cpp +++ b/Swiften/SASL/SCRAMSHA1ClientAuthenticator.cpp @@ -94,11 +94,6 @@ bool SCRAMSHA1ClientAuthenticator::setChallenge(const boost::optional<ByteArray> return false; } - ByteArray channelBindData; - if (useChannelBinding && tlsChannelBindingData) { - channelBindData = *tlsChannelBindingData; - } - // Compute all the values needed for the server signature try { saltedPassword = PBKDF2::encode<HMAC_SHA1>(StringPrep::getPrepared(getPassword(), StringPrep::SASLPrep), salt, iterations); |