]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_part.cpp
Fix for parameters which contain a colon (which is not the first char in the string)
[user/henk/code/inspircd.git] / src / cmd_part.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #include "inspircd.h"
18 #include "users.h"
19 #include "commands/cmd_part.h"
20
21 void cmd_part::Handle (const char** parameters, int pcnt, userrec *user)
22 {
23         if (ServerInstance->Parser->LoopCall(user, this, parameters, pcnt, 0))
24                 return;
25
26         chanrec* c = ServerInstance->FindChan(parameters[0]);
27         
28         if (c)
29         {
30                 if (!c->PartUser(user, pcnt > 1 ? parameters[0] : NULL))
31                         /* Arse, who stole our channel! :/ */
32                         delete c;
33         }
34         else
35         {
36                 user->WriteServ( "401 %s %s :No such channel", user->nick, parameters[0]);
37         }
38 }