diff options
author | Waqas Hussain <waqas20@gmail.com> | 2010-06-03 17:47:51 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2010-06-03 17:47:51 +0500 |
commit | 164d72fde89f34ff949ccca87f10dff496728603 (patch) | |
tree | 954069d56e5417f00dde71dda681bd006dd2e901 /util/sasl | |
parent | b0d58795e1e3b1d9162d28b3aebf8b256c348c37 (diff) | |
download | prosody-164d72fde89f34ff949ccca87f10dff496728603.tar.gz prosody-164d72fde89f34ff949ccca87f10dff496728603.zip |
util.sasl.scram: Fixed a log level.
Diffstat (limited to 'util/sasl')
-rw-r--r-- | util/sasl/scram.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/sasl/scram.lua b/util/sasl/scram.lua index 52656a89..1340423c 100644 --- a/util/sasl/scram.lua +++ b/util/sasl/scram.lua @@ -105,7 +105,7 @@ function saltedPasswordSHA1(password, salt, iteration_count) return false, "inappropriate argument types" end if iteration_count < 4096 then - log("warning", "Iteration count < 4096 which is the suggested minimum according to RFC 5802.") + log("warn", "Iteration count < 4096 which is the suggested minimum according to RFC 5802.") end return true, Hi(hmac_sha1, password, salt, iteration_count); |