diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-03-11 17:50:18 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-03-11 17:50:18 +0000 |
commit | 4afaeda154411ac9ef91a7fcbb55e56e7d952519 (patch) | |
tree | 83c497e9671ce8d5d04b15fe7c9b7ed85cb2ccdf /src | |
parent | 2e18d84e9b3e1c500ec740ea66b2a0336001dac2 (diff) |
Send denied commands to the correct snomask (t, not d). Reported by HiroP.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11209 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-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 92428fd32..2dfc7fac5 100644 --- a/src/command_parse.cpp +++ b/src/command_parse.cpp @@ -374,7 +374,7 @@ bool CommandParser::ProcessCommand(User *user, std::string &cmd) user->nick.c_str(), command.c_str()); } - ServerInstance->SNO->WriteToSnoMask('d', "%s denied for %s (%s@%s)", + ServerInstance->SNO->WriteToSnoMask('t', "%s denied for %s (%s@%s)", command.c_str(), user->nick.c_str(), user->ident.c_str(), user->host.c_str()); return do_more; } |