summaryrefslogtreecommitdiff
path: root/modules/protocol/plexus.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2010-11-23 16:48:54 -0600
committerAdam <Adam@anope.org>2010-12-12 19:36:19 -0500
commit37e02a3594fdddc3d5a3df0501c528f42db6c4da (patch)
tree2b26a003def3b3ecdd7f46aa67d172a3b04a7369 /modules/protocol/plexus.cpp
parent7d1cfe9514062a451b480783fe8df6e63f2954ab (diff)
Added cs_entrymsg
Diffstat (limited to 'modules/protocol/plexus.cpp')
-rw-r--r--modules/protocol/plexus.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/plexus.cpp b/modules/protocol/plexus.cpp
index 0f37963c5..551c025ae 100644
--- a/modules/protocol/plexus.cpp
+++ b/modules/protocol/plexus.cpp
@@ -157,7 +157,7 @@ class RatboxProto : public IRCDProto
void SendForceNickChange(const User *u, const Anope::string &newnick, time_t when)
{
- send_cmd(Config->Numeric, "ENCAP %s SVSNICK %s %ld %s %ld", u->server->GetName().c_str(), u->nick, static_cast<long>(u->timestamp), newnick, static_cast<long>(when));
+ send_cmd(Config->Numeric, "ENCAP %s SVSNICK %s %ld %s %ld", u->server->GetName().c_str(), u->nick.c_str(), static_cast<long>(u->timestamp), newnick.c_str(), static_cast<long>(when));
}
void SendConnect()