diff options
Diffstat (limited to 'util/sasl/scram.lua')
-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); |