# HG changeset patch # User Matthew Wild # Date 1279742642 -3600 # Node ID 4a91047f9b5e8e065e36c3e47dec9e5294a631ed # Parent 3da3d6480e6561c538d86bfb88a417b0b58fdccb mod_auth_ldap: Update for new usermanager.test_password syntax diff -r 3da3d6480e65 -r 4a91047f9b5e mod_auth_ldap/mod_auth_ldap.lua --- a/mod_auth_ldap/mod_auth_ldap.lua Wed Jul 21 21:03:36 2010 +0100 +++ b/mod_auth_ldap/mod_auth_ldap.lua Wed Jul 21 21:04:02 2010 +0100 @@ -48,7 +48,7 @@ log("debug", "NODEprep failed on username: %s", username); return "", nil; end - return provider.test_password(prepped_username, password, realm), true; + return provider.test_password(prepped_username, realm, password), true; end }; return new_sasl(realm, testpass_authentication_profile);