diff options
Diffstat (limited to 'src/modules/extra')
-rw-r--r-- | src/modules/extra/m_pgsql.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/extra/m_pgsql.cpp b/src/modules/extra/m_pgsql.cpp index 0389ddcd5..e4319aed5 100644 --- a/src/modules/extra/m_pgsql.cpp +++ b/src/modules/extra/m_pgsql.cpp @@ -670,7 +670,7 @@ SQLConn::SQLConn(InspIRCd* SI, ModulePgSQL* self, const SQLhost& hi) strlcpy(this->host, dbhost.c_str(), MAXBUF); strlcpy(this->IP, dbhost.c_str(), MAXBUF); this->port = dbport; - idle = TIME; + idle = this->Instance->Time(); this->ClosePending = false; @@ -806,7 +806,7 @@ bool SQLConn::DoConnectedPoll() /* We just read stuff from the server, that counts as it being alive * so update the idle-since time :p */ - idle = TIME; + idle = this->Instance->Time(); if(PQisBusy(sql)) { |