aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_geoban.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-07-22 18:33:38 +0100
committerGravatar Sadie Powell2022-07-22 18:53:21 +0100
commit648f813f8c89e6e7d0ed5bda2c2149bee2babb09 (patch)
tree5357669e57bb381c80bfdbd24ed4057a99db8e5b /src/modules/m_geoban.cpp
parentUpdate author list. (diff)
Switch from NULL to nullptr.
Diffstat (limited to 'src/modules/m_geoban.cpp')
-rw-r--r--src/modules/m_geoban.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_geoban.cpp b/src/modules/m_geoban.cpp
index ecd8fe8e0..caaf038f6 100644
--- a/src/modules/m_geoban.cpp
+++ b/src/modules/m_geoban.cpp
@@ -39,7 +39,7 @@ public:
bool IsMatch(User* user, Channel* channel, const std::string& text) override
{
- Geolocation::Location* location = geoapi ? geoapi->GetLocation(user) : NULL;
+ Geolocation::Location* location = geoapi ? geoapi->GetLocation(user) : nullptr;
const std::string code = location ? location->GetCode() : "XX";
// Does this user match against the ban?
@@ -71,7 +71,7 @@ public:
if (!request.flags['G'])
return MOD_RES_PASSTHRU;
- Geolocation::Location* location = geoapi ? geoapi->GetLocation(user) : NULL;
+ Geolocation::Location* location = geoapi ? geoapi->GetLocation(user) : nullptr;
const std::string code = location ? location->GetCode() : "XX";
return InspIRCd::Match(code, request.matchtext, ascii_case_insensitive_map) ? MOD_RES_ALLOW : MOD_RES_DENY;
}
@@ -81,7 +81,7 @@ public:
if (whois.GetTarget()->server->IsService())
return;
- Geolocation::Location* location = geoapi ? geoapi->GetLocation(whois.GetTarget()) : NULL;
+ Geolocation::Location* location = geoapi ? geoapi->GetLocation(whois.GetTarget()) : nullptr;
if (location)
whois.SendLine(RPL_WHOISCOUNTRY, location->GetCode(), "is connecting from " + location->GetName());
else