# HG changeset patch # User Christian Hammond # Date 1058423214 0 # Node ID aa806c22fb400d3fda199a8faceb9bbc5dc39e53 # Parent a97b47ff5a7edc3d94a467e8a4f9aeed8612cc39 [gaim-migrate @ 6661] Just because I may as well do it now, any old IRC accounts that are being imported set to irc.openprojects.net are now being moved over to irc.freenode.net. Was that English, or am I just too tired? committer: Tailor Script diff -r a97b47ff5a7e -r aa806c22fb40 src/gaimrc.c --- a/src/gaimrc.c Thu Jul 17 06:19:42 2003 +0000 +++ b/src/gaimrc.c Thu Jul 17 06:26:54 2003 +0000 @@ -688,7 +688,9 @@ strchr(gaim_account_get_username(account), '@') == NULL) { tmp = g_strdup_printf("%s@%s", - gaim_account_get_username(account), p->value[0]); + gaim_account_get_username(account), + (!strcmp(p->value[0], "irc.openprojects.net") + ? "irc.freenode.net" : p->value[0])); gaim_account_set_username(account, tmp); g_free(tmp); }