From: Josh Soref Date: Wed, 10 Mar 2021 12:55:46 +0000 (-0500) Subject: spelling: checkof X-Git-Tag: rec-4.5.0-beta1~30^2~41 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fdfa2b68cda924837c2ca1e82ac214bc64c15ced;p=thirdparty%2Fpdns.git spelling: checkof Signed-off-by: Josh Soref --- diff --git a/.github/actions/spell-check/allow.txt b/.github/actions/spell-check/allow.txt index fba0b6af1d..c25b5d4a75 100644 --- a/.github/actions/spell-check/allow.txt +++ b/.github/actions/spell-check/allow.txt @@ -431,7 +431,6 @@ checkfunc checkglue checkinterval checknow -Checkof checkrr checkzone childstat diff --git a/pdns/backends/gsql/gsqlbackend.cc b/pdns/backends/gsql/gsqlbackend.cc index 2b2c292554..83c48fb530 100644 --- a/pdns/backends/gsql/gsqlbackend.cc +++ b/pdns/backends/gsql/gsqlbackend.cc @@ -76,7 +76,7 @@ GSQLBackend::GSQLBackend(const string &mode, const string &suffix) d_UpdateMasterOfZoneQuery=getArg("update-master-query"); d_UpdateKindOfZoneQuery=getArg("update-kind-query"); d_UpdateSerialOfZoneQuery=getArg("update-serial-query"); - d_UpdateLastCheckofZoneQuery=getArg("update-lastcheck-query"); + d_UpdateLastCheckOfZoneQuery=getArg("update-lastcheck-query"); d_UpdateAccountOfZoneQuery=getArg("update-account-query"); d_InfoOfAllMasterDomainsQuery=getArg("info-all-master-query"); d_DeleteDomainQuery=getArg("delete-domain-query"); @@ -147,7 +147,7 @@ GSQLBackend::GSQLBackend(const string &mode, const string &suffix) d_UpdateMasterOfZoneQuery_stmt = nullptr; d_UpdateKindOfZoneQuery_stmt = nullptr; d_UpdateSerialOfZoneQuery_stmt = nullptr; - d_UpdateLastCheckofZoneQuery_stmt = nullptr; + d_UpdateLastCheckOfZoneQuery_stmt = nullptr; d_UpdateAccountOfZoneQuery_stmt = nullptr; d_InfoOfAllMasterDomainsQuery_stmt = nullptr; d_DeleteDomainQuery_stmt = nullptr; @@ -212,7 +212,7 @@ void GSQLBackend::setFresh(uint32_t domain_id) try { reconnectIfNeeded(); - d_UpdateLastCheckofZoneQuery_stmt-> + d_UpdateLastCheckOfZoneQuery_stmt-> bind("last_check", time(nullptr))-> bind("domain_id", domain_id)-> execute()-> diff --git a/pdns/backends/gsql/gsqlbackend.hh b/pdns/backends/gsql/gsqlbackend.hh index 87084d2d4e..fb964c0190 100644 --- a/pdns/backends/gsql/gsqlbackend.hh +++ b/pdns/backends/gsql/gsqlbackend.hh @@ -74,7 +74,7 @@ protected: d_UpdateKindOfZoneQuery_stmt = d_db->prepare(d_UpdateKindOfZoneQuery, 2); d_UpdateAccountOfZoneQuery_stmt = d_db->prepare(d_UpdateAccountOfZoneQuery, 2); d_UpdateSerialOfZoneQuery_stmt = d_db->prepare(d_UpdateSerialOfZoneQuery, 2); - d_UpdateLastCheckofZoneQuery_stmt = d_db->prepare(d_UpdateLastCheckofZoneQuery, 2); + d_UpdateLastCheckOfZoneQuery_stmt = d_db->prepare(d_UpdateLastCheckOfZoneQuery, 2); d_InfoOfAllMasterDomainsQuery_stmt = d_db->prepare(d_InfoOfAllMasterDomainsQuery, 0); d_DeleteDomainQuery_stmt = d_db->prepare(d_DeleteDomainQuery, 1); d_DeleteZoneQuery_stmt = d_db->prepare(d_DeleteZoneQuery, 1); @@ -138,7 +138,7 @@ protected: d_UpdateKindOfZoneQuery_stmt.reset(); d_UpdateAccountOfZoneQuery_stmt.reset(); d_UpdateSerialOfZoneQuery_stmt.reset(); - d_UpdateLastCheckofZoneQuery_stmt.reset(); + d_UpdateLastCheckOfZoneQuery_stmt.reset(); d_InfoOfAllMasterDomainsQuery_stmt.reset(); d_DeleteDomainQuery_stmt.reset(); d_DeleteZoneQuery_stmt.reset(); @@ -294,7 +294,7 @@ private: string d_UpdateKindOfZoneQuery; string d_UpdateAccountOfZoneQuery; string d_UpdateSerialOfZoneQuery; - string d_UpdateLastCheckofZoneQuery; + string d_UpdateLastCheckOfZoneQuery; string d_InfoOfAllMasterDomainsQuery; string d_DeleteDomainQuery; string d_DeleteZoneQuery; @@ -365,7 +365,7 @@ private: unique_ptr d_UpdateKindOfZoneQuery_stmt; unique_ptr d_UpdateAccountOfZoneQuery_stmt; unique_ptr d_UpdateSerialOfZoneQuery_stmt; - unique_ptr d_UpdateLastCheckofZoneQuery_stmt; + unique_ptr d_UpdateLastCheckOfZoneQuery_stmt; unique_ptr d_InfoOfAllMasterDomainsQuery_stmt; unique_ptr d_DeleteDomainQuery_stmt; unique_ptr d_DeleteZoneQuery_stmt;