changeset 1938:cfe73f64ad29

mod_auth_http_async: Fix syntax error
author Kim Alvefur <zash@zash.se>
date Wed, 28 Oct 2015 15:03:49 +0100
parents def6290a8cd1
children 54f9e8663139
files mod_auth_http_async/mod_auth_http_async.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mod_auth_http_async/mod_auth_http_async.lua	Mon Oct 26 20:17:12 2015 +0100
+++ b/mod_auth_http_async/mod_auth_http_async.lua	Wed Oct 28 15:03:49 2015 +0100
@@ -18,7 +18,7 @@
 local api_base = module:get_option_string("http_auth_url",  ""):gsub("$host", host);
 if api_base == "" then error("http_auth_url required") end
 
-local function async_http_request(url, ex);
+local function async_http_request(url, ex)
 	local wait, done = waiter();
 
 	local content, code, request, response;