# HG changeset patch # User Ethan Blanton # Date 1105290016 0 # Node ID 93dab54c7bb6a543e2bc1becb3f5ae3d0a443d72 # Parent 387d06e21ae3e961d5457eb9430d6e7bee3bfe49 [gaim-migrate @ 11785] Information suppression committer: Tailor Script diff -r 387d06e21ae3 -r 93dab54c7bb6 src/protocols/irc/irc.c --- a/src/protocols/irc/irc.c Sun Jan 09 04:35:39 2005 +0000 +++ b/src/protocols/irc/irc.c Sun Jan 09 17:00:16 2005 +0000 @@ -229,7 +229,7 @@ { GaimConnection *gc; struct irc_conn *irc; - char *buf, **userparts; + char **userparts; const char *username = gaim_account_get_username(account); int err; @@ -256,9 +256,7 @@ irc->msgs = g_hash_table_new(g_str_hash, g_str_equal); irc_msg_table_build(irc); - buf = g_strdup_printf(_("Logging in: %s"), username); - gaim_connection_update_progress(gc, buf, 1, 2); - g_free(buf); + gaim_connection_update_progress(gc, _("Connecting"), 1, 2); if (gaim_account_get_bool(account, "ssl", FALSE)) { if (gaim_ssl_is_supported()) {