diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-16 09:59:07 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-16 09:59:07 +0000 |
commit | 453fed132544cb5e49c84512703034d0090df402 (patch) | |
tree | 4d9ff579624a821b19112f73c364350969e9c6ca /src/command_parse.cpp | |
parent | 898e8da56573c70524a926c1df5dbab7ffcca6a5 (diff) |
Fixed some crap
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2506 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/command_parse.cpp')
-rw-r--r-- | src/command_parse.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp index 7bc554c5a..2e1b19ab4 100644 --- a/src/command_parse.cpp +++ b/src/command_parse.cpp @@ -71,16 +71,16 @@ extern Module* IOHookModule; extern InspSocket* socket_ref[65535]; extern time_t TIME; -extern SocketEngine* SE = NULL; +extern SocketEngine* SE; // This table references users by file descriptor. // its an array to make it VERY fast, as all lookups are referenced // by an integer, meaning there is no need for a scan/search operation. extern userrec* fd_ref_table[65536]; -extern serverstats* stats = new serverstats; -extern Server* MyServer = new Server; -extern ServerConfig *Config = new ServerConfig; +extern serverstats* stats; +extern Server* MyServer; +extern ServerConfig *Config; extern user_hash clientlist; extern chan_hash chanlist; |