diff -r 484e7ce9532a -r 8c3e1d30d62b src/protocols/msn/msn.c --- a/src/protocols/msn/msn.c Thu Apr 03 02:32:17 2003 +0000 +++ b/src/protocols/msn/msn.c Thu Apr 03 02:34:48 2003 +0000 @@ -1999,6 +1999,7 @@ G_MODULE_EXPORT void msn_init(struct prpl *ret) { + struct proto_user_split *pus; struct proto_user_opt *puo; ret->protocol = PROTO_MSN; ret->options = OPT_PROTO_MAIL_CHECK; @@ -2039,8 +2040,15 @@ ret->file_transfer_read = msn_file_transfer_read; #endif + pus = g_new0(struct proto_user_split, 1); + pus->sep = '@'; + pus->label = g_strdup(_("Server:")); + pus->def = g_strdup("hotmail.com"); + ret->user_splits = g_list_append(ret->user_splits, pus); + + puo = g_new0(struct proto_user_opt, 1); - puo->label = g_strdup(_("Server:")); + puo->label = g_strdup(_("Login Server:")); puo->def = g_strdup(MSN_SERVER); puo->pos = USEROPT_MSNSERVER; ret->user_opts = g_list_append(ret->user_opts, puo);