diff options
author | Adam <Adam@anope.org> | 2011-03-13 14:03:02 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-03-13 14:03:02 -0400 |
commit | b75fa1c6ecf430ca430d5dd2c749feafd0805d46 (patch) | |
tree | e75b3360a0ac6b7d5f32e91691db87f2e36fc9f0 | |
parent | 3fbf39b25d3ab95cab83baf198a24a7d6ad3689b (diff) |
Fixed a crash in /cs help register
-rw-r--r-- | modules/core/cs_register.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/cs_register.cpp b/modules/core/cs_register.cpp index 7d45bc295..995c0e65b 100644 --- a/modules/core/cs_register.cpp +++ b/modules/core/cs_register.cpp @@ -117,7 +117,7 @@ class CommandCSRegister : public Command "NOTICE: In order to register a channel, you must have\n" "first registered your nickname. If you haven't,\n" "\002%R%s HELP\002 for information on how to do so."), - ChanServ->nick.c_str(), ChanServ->nick.c_str(), ChanServ->nick.c_str()); + ChanServ->nick.c_str(), ChanServ->nick.c_str(), ChanServ->nick.c_str(), ChanServ->nick.c_str()); return true; } |