From 6a4b9410c9d4b6ab243bee4cc4ed6380baf948d3 Mon Sep 17 00:00:00 2001 From: special Date: Mon, 14 Sep 2009 22:06:47 +0000 Subject: 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 --- src/command_parse.cpp | 2 +- src/mode.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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 { -- cgit v1.2.3