aboutsummaryrefslogtreecommitdiffstats
path: root/util
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
commit03ffab383cb0c807a1c6370f169b9bff887874ea (patch)
tree9878848a94d95eeb9d439167bef67800a249ac9a /util
parent4d4959540caf49b9659e9d952f8dbdf561c1b544 (diff)
downloadprosody-03ffab383cb0c807a1c6370f169b9bff887874ea.tar.gz
prosody-03ffab383cb0c807a1c6370f169b9bff887874ea.zip
util.sasl.scram: Fixed a log level.
Diffstat (limited to 'util')
-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);