aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_ojoin.cpp
diff options
context:
space:
mode:
authorGravatar attilamolnar2013-08-08 15:10:48 +0200
committerGravatar attilamolnar2013-08-08 15:10:48 +0200
commit9962840222b6886f7653fc64443f19ebd661cc63 (patch)
tree67686d0db5f8806a114a9b634f6e67cf9b70f7fa /src/modules/m_ojoin.cpp
parentIssue #604, fix m_dnsbl, broken in accccc212cd4f08a3c5532b1ae7a17e76bac8718 (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_ojoin.cpp')
-rw-r--r--src/modules/m_ojoin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_ojoin.cpp b/src/modules/m_ojoin.cpp
index 8f7fe4460..b0c206ab3 100644
--- a/src/modules/m_ojoin.cpp
+++ b/src/modules/m_ojoin.cpp
@@ -69,7 +69,7 @@ class CommandOjoin : public SplitCommand
// they're already in the channel
std::vector<std::string> modes;
modes.push_back(parameters[0]);
- modes.push_back("+" + npmh->GetModeChar());
+ modes.push_back(std::string("+") + npmh->GetModeChar());
if (op)
{
modes[1].push_back('o');