1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2007 InspIRCd Development Team
6 * See: http://www.inspircd.org/wiki/index.php/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
16 #include "commands/cmd_pass.h"
18 extern "C" DllExport command_t* init_command(InspIRCd* Instance)
20 return new cmd_pass(Instance);
23 CmdResult cmd_pass::Handle (const char** parameters, int pcnt, userrec *user)
25 // Check to make sure they havnt registered -- Fix by FCS
26 if (user->registered == REG_ALL)
28 user->WriteServ("462 %s :You may not reregister",user->nick);
31 ConnectClass* a = user->GetClass();
35 strlcpy(user->password,parameters[0],63);
36 if (a->GetPass() == parameters[0])
38 user->haspassed = true;