summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2018-08-14 00:22:59 +0100
committerPeter Powell <petpow@saberuk.com>2018-08-14 00:22:59 +0100
commitf7a115884f91d58d5699e38f4e25fdaef65a003d (patch)
tree2c4cf48dd143d2a919b6a906ed822bf2783fbdcd /src
parent10b17a0e9f948b1dd4f69c9af1f55f712664d155 (diff)
Rename OnChangeLocalUserHost to OnPreChangeHost for consistency.
Diffstat (limited to 'src')
-rw-r--r--src/modules.cpp2
-rw-r--r--src/users.cpp5
2 files changed, 4 insertions, 3 deletions
diff --git a/src/modules.cpp b/src/modules.cpp
index 866138728..3a574fdda 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -107,7 +107,7 @@ ModResult Module::OnCheckLimit(User*, Channel*) { DetachEvent(I_OnCheckLimit); r
ModResult Module::OnCheckChannelBan(User*, Channel*) { DetachEvent(I_OnCheckChannelBan); return MOD_RES_PASSTHRU; }
ModResult Module::OnCheckBan(User*, Channel*, const std::string&) { DetachEvent(I_OnCheckBan); return MOD_RES_PASSTHRU; }
ModResult Module::OnExtBanCheck(User*, Channel*, char) { DetachEvent(I_OnExtBanCheck); return MOD_RES_PASSTHRU; }
-ModResult Module::OnChangeLocalUserHost(LocalUser*, const std::string&) { DetachEvent(I_OnChangeLocalUserHost); return MOD_RES_PASSTHRU; }
+ModResult Module::OnPreChangeHost(LocalUser*, const std::string&) { DetachEvent(I_OnPreChangeHost); return MOD_RES_PASSTHRU; }
ModResult Module::OnPreChangeRealName(LocalUser*, const std::string&) { DetachEvent(I_OnPreChangeRealName); return MOD_RES_PASSTHRU; }
ModResult Module::OnPreTopicChange(User*, Channel*, const std::string&) { DetachEvent(I_OnPreTopicChange); return MOD_RES_PASSTHRU; }
ModResult Module::OnPassCompare(Extensible* ex, const std::string &password, const std::string &input, const std::string& hashtype) { DetachEvent(I_OnPassCompare); return MOD_RES_PASSTHRU; }
diff --git a/src/users.cpp b/src/users.cpp
index e05ef1853..e17c8cd79 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -1004,10 +1004,11 @@ bool User::ChangeDisplayedHost(const std::string& shost)
if (GetDisplayedHost() == shost)
return true;
- if (IS_LOCAL(this))
+ LocalUser* luser = IS_LOCAL(this);
+ if (luser)
{
ModResult MOD_RESULT;
- FIRST_MOD_RESULT(OnChangeLocalUserHost, MOD_RESULT, (IS_LOCAL(this),shost));
+ FIRST_MOD_RESULT(OnPreChangeHost, MOD_RESULT, (luser, shost));
if (MOD_RESULT == MOD_RES_DENY)
return false;
}