diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-11-01 13:24:43 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-11-01 13:24:43 +0000 |
commit | d4690491e1788ae327ec5331532455996ccedfff (patch) | |
tree | edfc17074408454e3536f1efe9fea402fb33c0e7 | |
parent | 206aa6907524c1f834ba23160a033fa6a8e2bb0b (diff) |
- Removed temporary_xlines list
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1623 82007160-df01-0410-b94d-b575c5fd34c7
-rw-r--r-- | include/conf.h | 2 | ||||
-rw-r--r-- | src/conf.c | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/include/conf.h b/include/conf.h index b6f2a6f..42fb871 100644 --- a/include/conf.h +++ b/include/conf.h @@ -414,7 +414,6 @@ extern dlink_list rxconf_items; extern dlink_list rkconf_items; extern dlink_list leaf_items; extern dlink_list service_items; -extern dlink_list temporary_xlines; extern struct logging_entry ConfigLoggingEntry; extern struct config_file_entry ConfigFileEntry;/* defined in ircd.c*/ extern struct config_channel_entry ConfigChannel;/* defined in channel.c*/ @@ -466,7 +465,6 @@ extern int rehash(int); extern int conf_add_server(struct ConfItem *, const char *); extern void conf_add_class_to_conf(struct ConfItem *, const char *); -extern int find_and_delete_temporary(const char *, const char *, int); extern const char *get_oper_name(const struct Client *); extern void *map_to_conf(struct ConfItem *); @@ -68,7 +68,6 @@ dlink_list rkconf_items = { NULL, NULL, 0 }; dlink_list nresv_items = { NULL, NULL, 0 }; dlink_list class_items = { NULL, NULL, 0 }; -dlink_list temporary_xlines = { NULL, NULL, 0 }; dlink_list temporary_resv = { NULL, NULL, 0 }; extern unsigned int lineno; |