| 141 struct toc_data *tdt; |
141 struct toc_data *tdt; |
| 142 char buf[80]; |
142 char buf[80]; |
| 143 |
143 |
| 144 gc = new_gaim_conn(user); |
144 gc = new_gaim_conn(user); |
| 145 gc->proto_data = tdt = g_new0(struct toc_data, 1); |
145 gc->proto_data = tdt = g_new0(struct toc_data, 1); |
| 146 gc->flags |= OPT_CONN_HTML; |
146 gc->flags |= OPT_CONN_HTML | OPT_CONN_SHOW_HTML; |
| 147 |
147 |
| 148 g_snprintf(buf, sizeof buf, "Looking up %s", |
148 g_snprintf(buf, sizeof buf, "Looking up %s", |
| 149 user->proto_opt[USEROPT_AUTH][0] ? user->proto_opt[USEROPT_AUTH] : TOC_HOST); |
149 user->proto_opt[USEROPT_AUTH][0] ? user->proto_opt[USEROPT_AUTH] : TOC_HOST); |
| 150 set_login_progress(gc, 1, buf); |
150 set_login_progress(gc, 1, buf); |
| 151 |
151 |