From 5b3f81ea78f7a8ab69ff94cbf2bbf07f5966682e Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 5 May 2013 21:05:43 -0400 Subject: That doesn't work either, just don't use references. find ./ -name '*.cpp' -exec sed -i 's/Get/Get/g' {} \; --- modules/extra/m_sql_oper.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/extra/m_sql_oper.cpp') diff --git a/modules/extra/m_sql_oper.cpp b/modules/extra/m_sql_oper.cpp index 480bcf5a0..a45001835 100644 --- a/modules/extra/m_sql_oper.cpp +++ b/modules/extra/m_sql_oper.cpp @@ -105,8 +105,8 @@ class ModuleSQLOper : public Module { Configuration::Block *config = conf->GetModule(this); - this->engine = config->Get("engine"); - this->query = config->Get("query"); + this->engine = config->Get("engine"); + this->query = config->Get("query"); this->SQL = ServiceReference("SQL::Provider", this->engine); } -- cgit