diff options
Diffstat (limited to 'modules/extra/m_mysql.cpp')
-rw-r--r-- | modules/extra/m_mysql.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/extra/m_mysql.cpp b/modules/extra/m_mysql.cpp index a61f11e8b..8cf12ca79 100644 --- a/modules/extra/m_mysql.cpp +++ b/modules/extra/m_mysql.cpp @@ -212,9 +212,9 @@ class ModuleSQL : public Module, public Pipe } } - for (i = 0; i < Config->CountBlock("mysql"); ++i) + for (i = 0; i < config->CountBlock("mysql"); ++i) { - Configuration::Block *block = Config->GetBlock("mysql", i); + Configuration::Block *block = config->GetBlock("mysql", i); const Anope::string &connname = block->Get<const Anope::string>("name", "mysql/main"); if (this->MySQLServices.find(connname) == this->MySQLServices.end()) |