aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-09-01 08:35:37 +0100
committerGravatar Sadie Powell2023-09-01 08:35:37 +0100
commit7e927afd8e0d0d56ee424b7630b666d7a91934ab (patch)
tree82350eeeaa23e623bbedbd3761f6330697179d11 /src/modules/m_spanningtree
parentFix being able to FJOIN non-channels. (diff)
Tweak the malformed channel name message slightly.
Diffstat (limited to 'src/modules/m_spanningtree')
-rw-r--r--src/modules/m_spanningtree/fjoin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/fjoin.cpp b/src/modules/m_spanningtree/fjoin.cpp
index 1e2cbc45f..103529308 100644
--- a/src/modules/m_spanningtree/fjoin.cpp
+++ b/src/modules/m_spanningtree/fjoin.cpp
@@ -129,7 +129,7 @@ CmdResult CommandFJoin::Handle(User* srcuser, Params& params)
if (!chan)
{
if (channel[0] != '#')
- throw ProtocolException("Malformed channel name in FJOIN '" + channel + '"');
+ throw ProtocolException("Malformed channel name in FJOIN: " + channel);
chan = new Channel(channel, TS);
}