diff options
author | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-14 22:06:47 +0000 |
---|---|---|
committer | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-14 22:06:47 +0000 |
commit | 6a4b9410c9d4b6ab243bee4cc4ed6380baf948d3 (patch) | |
tree | 118cba6da255121a90f03fb17ccb10bb03d17df4 | |
parent | 3db2daca8fd8fcc06afd0eb10633a519b5e3e655 (diff) |
Properly spacify opertypes in error messages. Patch by dKingston
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11724 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/command_parse.cpp | 2 | ||||
-rw-r--r-- | src/mode.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp index e4eb57e80..92d4b8c24 100644 --- a/src/command_parse.cpp +++ b/src/command_parse.cpp @@ -359,7 +359,7 @@ bool CommandParser::ProcessCommand(User *user, std::string &cmd) } if (!user->HasPermission(command)) { - user->WriteNumeric(ERR_NOPRIVILEGES, "%s :Permission Denied - Oper type %s does not have access to command %s",user->nick.c_str(),user->oper.c_str(),command.c_str()); + user->WriteNumeric(ERR_NOPRIVILEGES, "%s :Permission Denied - Oper type %s does not have access to command %s",user->nick.c_str(),irc::Spacify(user->oper.c_str()),command.c_str()); return do_more; } } diff --git a/src/mode.cpp b/src/mode.cpp index 56524ff00..b7ee7b385 100644 --- a/src/mode.cpp +++ b/src/mode.cpp @@ -328,7 +328,7 @@ ModeAction ModeParser::TryMode(User* user, User* targetuser, Channel* chan, bool if (IS_OPER(user)) { user->WriteNumeric(ERR_NOPRIVILEGES, "%s :Permission Denied - Oper type %s does not have access to set %s mode %c", - user->nick.c_str(), user->oper.c_str(), type == MODETYPE_CHANNEL ? "channel" : "user", modechar); + user->nick.c_str(), irc::Spacify(user->oper.c_str()), type == MODETYPE_CHANNEL ? "channel" : "user", modechar); } else { |