diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-08-08 15:10:48 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-08-08 15:10:48 +0200 |
commit | 9962840222b6886f7653fc64443f19ebd661cc63 (patch) | |
tree | 67686d0db5f8806a114a9b634f6e67cf9b70f7fa /src/modules/m_channames.cpp | |
parent | 1f38b9adb576580d8e8638fefc5c7cb157f90a5c (diff) |
Fix a couple of issues
- Wrong doc for Snomask::GetDescription()
- Incorrect idle time when WHOISing remote users
- String + int = garbage
- Remote MODE commands (user mode changes) being broadcast in addition to being forwarded
- Incorrect revision being shown
Diffstat (limited to 'src/modules/m_channames.cpp')
-rw-r--r-- | src/modules/m_channames.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_channames.cpp b/src/modules/m_channames.cpp index 4228d5050..fcb2ef6d7 100644 --- a/src/modules/m_channames.cpp +++ b/src/modules/m_channames.cpp @@ -82,7 +82,7 @@ class ModuleChannelNames : public Module { std::vector<std::string> modes; modes.push_back(c->name); - modes.push_back("-" + permchannelmode->GetModeChar()); + modes.push_back(std::string("-") + permchannelmode->GetModeChar()); ServerInstance->Modes->Process(modes, ServerInstance->FakeClient); } |