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/protocolinterface.cpp | |
| parent | Add functor that does strict weak ordering based on national_case_insensitive... (diff) | |
Change type of snomask parameter to char in ProtocolInterface::SendSNONotice()
Diffstat (limited to 'src/modules/m_spanningtree/protocolinterface.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/protocolinterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/protocolinterface.cpp b/src/modules/m_spanningtree/protocolinterface.cpp index a6c826c7b..7a2b033d9 100644 --- a/src/modules/m_spanningtree/protocolinterface.cpp +++ b/src/modules/m_spanningtree/protocolinterface.cpp @@ -103,7 +103,7 @@ void SpanningTreeProtocolInterface::SendMode(User* source, User* u, Channel* c, } } -void SpanningTreeProtocolInterface::SendSNONotice(const std::string &snomask, const std::string &text) +void SpanningTreeProtocolInterface::SendSNONotice(char snomask, const std::string &text) { CmdBuilder("SNONOTICE").push(snomask).push_last(text).Broadcast(); } |
