From b5a93db8b8f158c9ffbe1288ecf011b8e3e22591 Mon Sep 17 00:00:00 2001 From: Valery Yatsko Date: Sun, 27 Jul 2008 16:25:00 +0400 Subject: [PATCH] Removing '/* patricia */' declarations block as libratbox3 has this now, changed the order of variable declarations a bit --- src/ircd.c | 24 +++++++----------------- 1 file changed, 7 insertions(+), 17 deletions(-) diff --git a/src/ircd.c b/src/ircd.c index 3ddc79e..c4e03ce 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -93,16 +93,6 @@ rb_dlink_list global_serv_list; /* global servers on the network */ rb_dlink_list local_oper_list; /* our opers, duplicated in lclient_list */ rb_dlink_list oper_list; /* network opers */ -time_t startup_time; - -int default_server_capabs = CAP_MASK; - -int splitmode; -int splitchecking; -int split_users; -int split_servers; -int eob_count; - const char *logFileName = LPATH; const char *pidFileName = PPATH; @@ -117,15 +107,15 @@ int ssl_ok = 0; int zlib_ok = 1; int testing_conf = 0; +time_t startup_time; -/* patricia */ -rb_bh *prefix_heap; -rb_bh *node_heap; -rb_bh *patricia_heap; +int default_server_capabs = CAP_MASK; -rb_bh *linebuf_heap; - -rb_bh *dnode_heap; +int splitmode; +int splitchecking; +int split_users; +int split_servers; +int eob_count; void ircd_shutdown(const char *reason)