# HG changeset patch # User Matthew Wild # Date 1264215224 0 # Node ID 254f738aecec36c6074470ba5928a423b4da65c3 # Parent 586893d29eaf9b78067552aee7a2682bfdab319a mod_component: Fix name of config option in error message (thanks nulani!) diff -r 586893d29eaf -r 254f738aecec plugins/mod_component.lua --- a/plugins/mod_component.lua Fri Jan 22 14:58:31 2010 +0000 +++ b/plugins/mod_component.lua Sat Jan 23 02:53:44 2010 +0000 @@ -44,7 +44,7 @@ local secret = config.get(session.user, "core", "component_secret"); if not secret then - (session.log or log)("warn", "Component attempted to identify as %s, but component_password is not set", session.user); + (session.log or log)("warn", "Component attempted to identify as %s, but component_secret is not set", session.user); session:close("not-authorized"); return; end