aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_cgiirc.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2019-02-07 12:17:09 +0000
committerGravatar Sadie Powell2019-02-07 12:17:09 +0000
commit8e908f0a6864eab4cf37997773603e9943bb7892 (patch)
treee4be6165b608bdfa35cbce88f447d94d9b498974 /src/modules/m_cgiirc.cpp
parentModuleManager: remove fakederef. (diff)
downloadinspircd++-8e908f0a6864eab4cf37997773603e9943bb7892.tar.gz
inspircd++-8e908f0a6864eab4cf37997773603e9943bb7892.tar.bz2
inspircd++-8e908f0a6864eab4cf37997773603e9943bb7892.zip
SnomaskManager: remove fakederef.
Diffstat (limited to 'src/modules/m_cgiirc.cpp')
-rw-r--r--src/modules/m_cgiirc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_cgiirc.cpp b/src/modules/m_cgiirc.cpp
index c5ab0e71f..42cf4700c 100644
--- a/src/modules/m_cgiirc.cpp
+++ b/src/modules/m_cgiirc.cpp
@@ -210,7 +210,7 @@ class CommandWebIRC : public SplitCommand
// If we are sending a snotice then the message will already be
// written to the logfile.
if (notify)
- ServerInstance->SNO->WriteGlobalSno('w', buffer);
+ ServerInstance->SNO.WriteGlobalSno('w', buffer);
else
ServerInstance->Logs.Log(MODNAME, LOG_DEFAULT, buffer);
}
@@ -271,7 +271,7 @@ class ModuleCgiIRC
void init() override
{
- ServerInstance->SNO->EnableSnomask('w', "CGIIRC");
+ ServerInstance->SNO.EnableSnomask('w', "CGIIRC");
}
void ReadConfig(ConfigStatus& status) override