diff options
author | Waqas Hussain <waqas20@gmail.com> | 2010-06-03 17:48:50 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2010-06-03 17:48:50 +0500 |
commit | 27869c5ecb1a8a0e0c969bc9ecc829cb61f186d4 (patch) | |
tree | 6b45f90c547092d95093ce7a5d5febba3f4f5c0c /util/sasl.lua | |
parent | ff82c8510b8b301b09ca095fd3eceddaa3582677 (diff) | |
download | prosody-27869c5ecb1a8a0e0c969bc9ecc829cb61f186d4.tar.gz prosody-27869c5ecb1a8a0e0c969bc9ecc829cb61f186d4.zip |
SASL: Minor cleanup.
Diffstat (limited to 'util/sasl.lua')
-rw-r--r-- | util/sasl.lua | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/util/sasl.lua b/util/sasl.lua index 306acc0c..c9225f0d 100644 --- a/util/sasl.lua +++ b/util/sasl.lua @@ -108,11 +108,8 @@ function method:select(mechanism) return false; end - self.mech_i = mechanisms[mechanism] - if self.mech_i == nil then - return false; - end - return true; + self.mech_i = mechanisms[mechanism]; + return (self.mech_i ~= nil); end -- feed new messages to process into the library |