summaryrefslogtreecommitdiff
path: root/src/command_parse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/command_parse.cpp')
-rw-r--r--src/command_parse.cpp8
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;