]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/commands/cmd_eline.cpp
Patch to not increment nickchange counter for nick changes that would be blocked...
[user/henk/code/inspircd.git] / src / commands / cmd_eline.cpp
index 53e776bd200e6e0c723ce480a07c74317da7972e..d28f4c8ee8792f3e41ab8d2e09cec8258829406f 100644 (file)
@@ -2,8 +2,8 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *         the file COPYING for details.
@@ -25,7 +25,7 @@ extern "C" DllExport Command* init_command(InspIRCd* Instance)
 CmdResult CommandEline::Handle (const std::vector<std::string>& parameters, User *user)
 {
        std::string target = parameters[0];
-       
+
        if (parameters.size() >= 3)
        {
                IdentHostPair ih;
@@ -55,7 +55,7 @@ CmdResult CommandEline::Handle (const std::vector<std::string>& parameters, User
                {
                        if (!duration)
                        {
-                               ServerInstance->SNO->WriteToSnoMask('x',"%s added permanent E-line for %s: %s",user->nick.c_str(),target.c_str(), parameters[2].c_str());
+                               ServerInstance->SNO->WriteToSnoMask('x',"%s added permanent E-line for %s: %s", user->nick.c_str(), target.c_str(), parameters[2].c_str());
                        }
                        else
                        {