diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-28 16:55:14 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-28 16:55:14 +0000 |
commit | 4f22db0f87aac488c28054e59f17745035658765 (patch) | |
tree | 536b3c2df7103e82694e55d725b589d5292aed6a /src/command_parse.cpp | |
parent | 28cfa7d8aec7a122f51b36a715fd6ddc55837be1 (diff) |
Typical, forgot a ;
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4579 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/command_parse.cpp')
-rw-r--r-- | src/command_parse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp index 3f8e87989..157162bce 100644 --- a/src/command_parse.cpp +++ b/src/command_parse.cpp @@ -253,7 +253,7 @@ void CommandParser::ProcessCommand(userrec *user, std::string &cmd) /* If syntax is given, display this as the 461 reply */ if (cm->second->syntax.length()) { - WriteServ(user->fd,"461 %s %s :Not enough parameters.", user->nick, command.c_str()) + WriteServ(user->fd,"461 %s %s :Not enough parameters.", user->nick, command.c_str()); /* Use RPL_TEXT for this */ if (Config->SyntaxHints) WriteServ(user->fd,"304 %s :SYNTAX %s %s", user->nick, cm->second->command.c_str(), cm->second->syntax.c_str()); |