diff options
author | Matthew Wild <mwild1@gmail.com> | 2021-12-20 20:46:24 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2021-12-20 20:46:24 +0000 |
commit | c482490bff2461f575cd8104d5dc3dc20c0b4196 (patch) | |
tree | 3fcd5ee83239a18329c8b0035c1a7a32ac990159 /core | |
parent | 5cb8d55857d6cf6d6aa3daeed2c83b885e323964 (diff) | |
download | prosody-c482490bff2461f575cd8104d5dc3dc20c0b4196.tar.gz prosody-c482490bff2461f575cd8104d5dc3dc20c0b4196.zip |
configmanager: Update error message to say 'VirtualHost' instead of 'Host'
Diffstat (limited to 'core')
-rw-r--r-- | core/configmanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/configmanager.lua b/core/configmanager.lua index ae0a274a..a379ecea 100644 --- a/core/configmanager.lua +++ b/core/configmanager.lua @@ -173,7 +173,7 @@ do name = prepped_name; if rawget(config_table, name) and rawget(config_table[name], "defined") and not rawget(config_table[name], "component_module") then - error(format("Component %q clashes with previously defined Host %q, for services use a sub-domain like conference.%s", + error(format("Component %q clashes with previously defined VirtualHost %q, for services use a sub-domain like conference.%s", name, name, name), 0); end set(config_table, name, "component_module", "component"); |