aboutsummaryrefslogtreecommitdiff
path: root/src/modules/extra/m_pgsql.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/extra/m_pgsql.cpp')
-rw-r--r--src/modules/extra/m_pgsql.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/extra/m_pgsql.cpp b/src/modules/extra/m_pgsql.cpp
index d1d8d1403..f4c0fa8d6 100644
--- a/src/modules/extra/m_pgsql.cpp
+++ b/src/modules/extra/m_pgsql.cpp
@@ -200,11 +200,11 @@ class SQLConn : public SQL::Provider, public EventHandler
DelayReconnect();
}
- CullResult cull() override
+ Cullable::Result Cull() override
{
- this->SQL::Provider::cull();
+ this->SQL::Provider::Cull();
ServerInstance->Modules.DelService(*this);
- return this->EventHandler::cull();
+ return this->EventHandler::Cull();
}
~SQLConn()
@@ -579,7 +579,7 @@ class ModulePgSQL : public Module
{
for(ConnMap::iterator i = connections.begin(); i != connections.end(); i++)
{
- i->second->cull();
+ i->second->Cull();
delete i->second;
}
connections.clear();