diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-05-24 19:39:07 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-05-24 19:39:07 +0100 |
commit | e97ee0eaad41b33c15b562dadb539828e429db84 (patch) | |
tree | 2791383deb1c0f64c867a63ed82f96cddbbca552 /util/sasl/digest-md5.lua | |
parent | 558778062f4d7fa6e406c243062d1fe2dd3ade9b (diff) | |
parent | 227478c80dfe7e28e2230ab8edc71d0634cb9ebf (diff) | |
download | prosody-e97ee0eaad41b33c15b562dadb539828e429db84.tar.gz prosody-e97ee0eaad41b33c15b562dadb539828e429db84.zip |
Merge trunk/Tobias->trunk
Diffstat (limited to 'util/sasl/digest-md5.lua')
-rw-r--r-- | util/sasl/digest-md5.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/sasl/digest-md5.lua b/util/sasl/digest-md5.lua index 8986ca45..2837148e 100644 --- a/util/sasl/digest-md5.lua +++ b/util/sasl/digest-md5.lua @@ -32,13 +32,13 @@ module "digest-md5" --[[ Supported Authentication Backends -digest-md5: +digest_md5: function(username, domain, realm, encoding) -- domain and realm are usually the same; for some broken -- implementations it's not return digesthash, state; end -digest-md5-test: +digest_md5_test: function(username, domain, realm, encoding, digesthash) return true or false, state; end |