Changeset

9292:d5f798efb1ba

mod_auth_insecure: Fix module provider name
author Matthew Wild <mwild1@gmail.com>
date Wed, 12 Sep 2018 13:43:18 +0100
parents 9291:329a670ae975
children 9293:0a751835627d
files plugins/mod_auth_insecure.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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!");