changeset 286:ca6199d73d68

mod_auth_ldap: Removed an invalid argument to a function.
author Waqas Hussain <waqas20@gmail.com>
date Tue, 14 Dec 2010 00:02:10 +0500
parents 108ac6f16d2d
children 6144fe6161f1
files mod_auth_ldap/mod_auth_ldap.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);