mod_auth_insecure: Fix module provider name
authorMatthew Wild <mwild1@gmail.com>
Wed, 12 Sep 2018 13:43:18 +0100
changeset 9295 d5f798efb1ba
parent 9294 329a670ae975
child 9296 0a751835627d
mod_auth_insecure: Fix module provider name
plugins/mod_auth_insecure.lua
--- a/plugins/mod_auth_insecure.lua	Tue Sep 11 20:57:23 2018 +0100
+++ b/plugins/mod_auth_insecure.lua	Wed Sep 12 13:43:18 2018 +0100
@@ -11,7 +11,7 @@
 local new_sasl = require "util.sasl".new;
 
 local host = module.host;
-local provider = { name = "any" };
+local provider = { name = "insecure" };
 
 assert(module:get_option_string("insecure_open_authentication") == "Yes please, I know what I'm doing!");