summaryrefslogtreecommitdiff
path: root/src/core/channels-setup.c
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2002-02-10 11:04:08 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2002-02-10 11:04:08 +0000
commit9575eecb39cb8c6ccaf16d800a10c0eed9aed224 (patch)
treea60803eec464880b912793e0366cf963c4bb1ed9 /src/core/channels-setup.c
parent86dadc071c2000f3dedbed61acfb43c94e5246cc (diff)
downloadirssi-9575eecb39cb8c6ccaf16d800a10c0eed9aed224.zip
Removed some old backwards compatibility code.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2411 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core/channels-setup.c')
-rw-r--r--src/core/channels-setup.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/channels-setup.c b/src/core/channels-setup.c
index e434cd9c..ac9b1c23 100644
--- a/src/core/channels-setup.c
+++ b/src/core/channels-setup.c
@@ -118,13 +118,6 @@ static CHANNEL_SETUP_REC *channel_setup_read(CONFIG_NODE *node)
channel = config_node_get_str(node, "name", NULL);
chatnet = config_node_get_str(node, "chatnet", NULL);
- if (chatnet == NULL) /* FIXME: remove this after .98... */ {
- chatnet = g_strdup(config_node_get_str(node, "ircnet", NULL));
- if (chatnet != NULL) {
- iconfig_node_set_str(node, "chatnet", chatnet);
- iconfig_node_set_str(node, "ircnet", NULL);
- }
- }
chatnetrec = chatnet == NULL ? NULL : chatnet_find(chatnet);
if (channel == NULL || chatnetrec == NULL) {