Software /
code /
prosody
Changeset
3154:104f05235cef
util.sasl.scram: Fixed a log level.
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Thu, 03 Jun 2010 17:47:51 +0500 |
parents | 3153:fd435cab928f |
children | 3155:c713fa2ba80c |
files | util/sasl/scram.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/util/sasl/scram.lua Thu Jun 03 17:27:49 2010 +0500 +++ b/util/sasl/scram.lua Thu Jun 03 17:47:51 2010 +0500 @@ -105,7 +105,7 @@ 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);