diff options
author | Timo Sirainen <cras@irssi.org> | 2002-02-10 11:04:08 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-02-10 11:04:08 +0000 |
commit | 9575eecb39cb8c6ccaf16d800a10c0eed9aed224 (patch) | |
tree | a60803eec464880b912793e0366cf963c4bb1ed9 /src/core/chatnets.c | |
parent | 86dadc071c2000f3dedbed61acfb43c94e5246cc (diff) | |
download | irssi-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/chatnets.c')
-rw-r--r-- | src/core/chatnets.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/core/chatnets.c b/src/core/chatnets.c index 1b1b718c..8739ff7d 100644 --- a/src/core/chatnets.c +++ b/src/core/chatnets.c @@ -168,17 +168,6 @@ static void read_chatnets(void) chatnet_destroy(chatnets->data); node = iconfig_node_traverse("chatnets", FALSE); - if (node == NULL) { - /* FIXME: remove after .98 */ - node = iconfig_node_traverse("ircnets", FALSE); - if (node != NULL) { - /* very dirty method - doesn't update hashtables - but this will do temporarily.. */ - g_free(node->key); - node->key = g_strdup("chatnets"); - } - } - if (node != NULL) { tmp = config_node_first(node->value); for (; tmp != NULL; tmp = config_node_next(tmp)) |