]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_users.cpp
More cleanup
[user/henk/code/inspircd.git] / src / cmd_users.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 using namespace std;
18
19 #include "inspircd_config.h"
20 #include "inspircd.h"
21 #include "inspircd_io.h"
22 #include <time.h>
23 #include <string>
24 #include "users.h"
25 #include "ctables.h"
26 #include "globals.h"
27 #include "message.h"
28 #include "commands.h"
29 #include "helperfuncs.h"
30 #include "hashcomp.h"
31 #include "typedefs.h"
32 #include "cmd_users.h"
33
34 void cmd_users::Handle (char **parameters, int pcnt, userrec *user)
35 {
36         WriteServ(user->fd,"445 %s :USERS has been disabled (depreciated command)",user->nick);
37 }
38
39