# HG changeset patch # User Matthew Wild # Date 1264215224 0 # Node ID 6eee75fb31593148ebc97bdf536cd88774ae82f1 # Parent d8296ab96f55f3bda5ac1d5432b8345e6ea65d58 mod_component: Fix name of config option in error message (thanks nulani!) diff -r d8296ab96f55 -r 6eee75fb3159 plugins/mod_component.lua --- a/plugins/mod_component.lua Fri Jan 22 16:36:11 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