diff options
| author | 2014-01-04 19:43:04 +0100 | |
|---|---|---|
| committer | 2014-01-04 19:43:04 +0100 | |
| commit | a500ec70bb82151c8fcf7443b4645640233952e8 (patch) | |
| tree | e3068140d44bed3c8e35a0d24846bc40dcb14330 /src/modules/m_spanningtree/main.cpp | |
| parent | Add functor that does strict weak ordering based on national_case_insensitive... (diff) | |
| download | inspircd++-a500ec70bb82151c8fcf7443b4645640233952e8.tar.gz inspircd++-a500ec70bb82151c8fcf7443b4645640233952e8.tar.bz2 inspircd++-a500ec70bb82151c8fcf7443b4645640233952e8.zip | |
Change type of snomask parameter to char in ProtocolInterface::SendSNONotice()
Diffstat (limited to 'src/modules/m_spanningtree/main.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp index 39ff222c5..8d8a51ede 100644 --- a/src/modules/m_spanningtree/main.cpp +++ b/src/modules/m_spanningtree/main.cpp @@ -631,7 +631,7 @@ void ModuleSpanningTree::ReadConfig(ConfigStatus& status) msg.append(e.GetReason()); ServerInstance->SNO->WriteToSnoMask('l', msg); if (status.srcuser && !IS_LOCAL(status.srcuser)) - ServerInstance->PI->SendSNONotice("L", msg); + ServerInstance->PI->SendSNONotice('L', msg); } } |
