# HG changeset patch
# User Kim Alvefur <zash@zash.se>
# Date 1446041299 -3600
# Node ID 54f9e866313955ed8016bdeaf990bf50602b9dbb
# Parent  cfe73f64ad29ccf285d8971deaa302d0c1b57b91
mod_auth_http_async: Correctly pass password to provider.test_password (thanks mother)

diff -r cfe73f64ad29 -r 54f9e8663139 mod_auth_http_async/mod_auth_http_async.lua
--- a/mod_auth_http_async/mod_auth_http_async.lua	Wed Oct 28 15:03:49 2015 +0100
+++ b/mod_auth_http_async/mod_auth_http_async.lua	Wed Oct 28 15:08:19 2015 +0100
@@ -68,7 +68,7 @@
 function provider.get_sasl_handler()
 	return new_sasl(host, {
 		plain_test = function(sasl, username, password, realm)
-			return provider.test_password(username, realm, password), true;
+			return provider.test_password(username, password), true;
 		end
 	});
 end