| 1819 struct gaim_connection *gc = new_gaim_conn(account); |
1819 struct gaim_connection *gc = new_gaim_conn(account); |
| 1820 struct irc_data *idata = gc->proto_data = g_new0(struct irc_data, 1); |
1820 struct irc_data *idata = gc->proto_data = g_new0(struct irc_data, 1); |
| 1821 |
1821 |
| 1822 g_snprintf(gc->displayname, sizeof(gc->displayname), "%s", gc->username); |
1822 g_snprintf(gc->displayname, sizeof(gc->displayname), "%s", gc->username); |
| 1823 |
1823 |
| 1824 g_snprintf(buf, sizeof(buf), "Signon: %s", gc->username); |
1824 g_snprintf(buf, sizeof(buf), _("Signon: %s"), gc->username); |
| 1825 set_login_progress(gc, 2, buf); |
1825 set_login_progress(gc, 2, buf); |
| 1826 |
1826 |
| 1827 idata->chantypes = g_strdup("#&!+"); |
1827 idata->chantypes = g_strdup("#&!+"); |
| 1828 idata->chanmodes = g_strdup("beI,k,lnt"); |
1828 idata->chanmodes = g_strdup("beI,k,lnt"); |
| 1829 idata->nickmodes = g_strdup("ohv"); |
1829 idata->nickmodes = g_strdup("ohv"); |