diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-09-12 13:43:18 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-09-12 13:43:18 +0100 |
commit | 40e214a42a308a79a8a6625478d41560991db620 (patch) | |
tree | a98cbc34a75ecd15d93ce91d35ad9a8072133a2e /plugins/mod_auth_insecure.lua | |
parent | 8344885f6adde0856379d981d8327500b6a11866 (diff) | |
download | prosody-40e214a42a308a79a8a6625478d41560991db620.tar.gz prosody-40e214a42a308a79a8a6625478d41560991db620.zip |
mod_auth_insecure: Fix module provider name
Diffstat (limited to 'plugins/mod_auth_insecure.lua')
-rw-r--r-- | plugins/mod_auth_insecure.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_auth_insecure.lua b/plugins/mod_auth_insecure.lua index d6500108..9e23c29f 100644 --- a/plugins/mod_auth_insecure.lua +++ b/plugins/mod_auth_insecure.lua @@ -11,7 +11,7 @@ local datamanager = require "util.datamanager"; 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!"); |