gaim/gaim

Parents d6a054aa4ece
Children 82548b67fb22
Somehow this horribly important string conveyed too much information; fixed.
--- a/src/protocols/irc/irc.c Fri Jan 07 15:56:37 2005 -0500
+++ b/src/protocols/irc/irc.c Sun Jan 09 11:36:08 2005 -0500
@@ -206,7 +206,7 @@
{
GaimConnection *gc;
struct irc_conn *irc;
- char *buf, **userparts;
+ char **userparts;
const char *username = gaim_account_get_username(account);
int err;
@@ -233,9 +233,7 @@
irc->msgs = g_hash_table_new(g_str_hash, g_str_equal);
irc_msg_table_build(irc);
- buf = g_strdup_printf(_("Signon: %s"), username);
- gaim_connection_update_progress(gc, buf, 1, 2);
- g_free(buf);
+ gaim_connection_update_progress(gc, _("Connecting"), 1, 2);
err = gaim_proxy_connect(account, irc->server,
gaim_account_get_int(account, "port", IRC_DEFAULT_PORT),