aboutsummaryrefslogtreecommitdiffstats
path: root/util/sasl
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2010-06-03 17:47:51 +0500
committerWaqas Hussain <waqas20@gmail.com>2010-06-03 17:47:51 +0500
commit164d72fde89f34ff949ccca87f10dff496728603 (patch)
tree954069d56e5417f00dde71dda681bd006dd2e901 /util/sasl
parentb0d58795e1e3b1d9162d28b3aebf8b256c348c37 (diff)
downloadprosody-164d72fde89f34ff949ccca87f10dff496728603.tar.gz
prosody-164d72fde89f34ff949ccca87f10dff496728603.zip
util.sasl.scram: Fixed a log level.
Diffstat (limited to 'util/sasl')
-rw-r--r--util/sasl/scram.lua2
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);