# HG changeset patch # User Waqas Hussain # Date 1292266930 -18000 # Node ID ca6199d73d68dcffead55b4931590a3daaddc9c2 # Parent 108ac6f16d2dc8d5d8acbce6596abdc025225000 mod_auth_ldap: Removed an invalid argument to a function. diff -r 108ac6f16d2d -r ca6199d73d68 mod_auth_ldap/mod_auth_ldap.lua --- a/mod_auth_ldap/mod_auth_ldap.lua Wed Dec 08 19:01:13 2010 +0100 +++ b/mod_auth_ldap/mod_auth_ldap.lua Tue Dec 14 00:02:10 2010 +0500 @@ -48,7 +48,7 @@ log("debug", "NODEprep failed on username: %s", username); return "", nil; end - return provider.test_password(prepped_username, realm, password), true; + return provider.test_password(prepped_username, password), true; end }; return new_sasl(realm, testpass_authentication_profile);