]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/commands/cmd_part.cpp
Patch to not increment nickchange counter for nick changes that would be blocked...
[user/henk/code/inspircd.git] / src / commands / cmd_part.cpp
index 07b45367fd6d6b71f5c38f9f14ff1eb3fcc8e274..834ee2b287b2e77f3cf4edd665eb6f6d1ba8c5df 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.
@@ -44,17 +44,16 @@ CmdResult CommandPart::Handle (const std::vector<std::string>& parameters, User
                return CMD_SUCCESS;
 
        Channel* c = ServerInstance->FindChan(parameters[0]);
-       
+
        if (c)
        {
-               const char *rreason = reason.empty() ? NULL : reason.c_str();
-               if (!c->PartUser(user, rreason))
+               if (!c->PartUser(user, reason))
                        /* Arse, who stole our channel! :/ */
                        delete c;
        }
        else
        {
-               user->WriteServ( "401 %s %s :No such channel", user->nick, parameters[0].c_str());
+               user->WriteServ( "401 %s %s :No such channel", user->nick.c_str(), parameters[0].c_str());
                return CMD_FAILURE;
        }