summaryrefslogtreecommitdiff
path: root/src/cmd_user.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-28 20:22:07 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-28 20:22:07 +0000
commit7972cc32495597ac411a51a40d41e0bb42f80a44 (patch)
tree169bcbe8024c5fb66032bd6a5c8581541815081e /src/cmd_user.cpp
parent3b6b04b1ee6ce0b9b5274def704170e6181236ec (diff)
New system for client exits using CullList seems stable, needs testing
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2681 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_user.cpp')
-rw-r--r--src/cmd_user.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/cmd_user.cpp b/src/cmd_user.cpp
index 7aa64b092..3d1754af3 100644
--- a/src/cmd_user.cpp
+++ b/src/cmd_user.cpp
@@ -48,7 +48,6 @@ using namespace std;
#include "typedefs.h"
#include "command_parse.h"
#include "cmd_user.h"
-#include "cull_list.h"
extern ServerConfig* Config;
extern InspIRCd* ServerInstance;
@@ -63,8 +62,6 @@ extern std::vector<userrec*> all_opers;
extern std::vector<userrec*> local_users;
extern userrec* fd_ref_table[65536];
-extern CullList* GlobalGoners;
-
void cmd_user::Handle (char **parameters, int pcnt, userrec *user)
{
log(DEBUG,"Handling USER from cmd_user class!");
@@ -95,7 +92,7 @@ void cmd_user::Handle (char **parameters, int pcnt, userrec *user)
{
/* user is registered now, bit 0 = USER command, bit 1 = sent a NICK command */
FOREACH_MOD(I_OnUserRegister,OnUserRegister(user));
- ConnectUser(user,GlobalGoners);
+ //ConnectUser(user,NULL);
}
}