Mercurial > pidgin
diff src/protocols/irc/irc.c @ 10494:93dab54c7bb6
[gaim-migrate @ 11785]
Information suppression
committer: Tailor Script <tailor@pidgin.im>
| author | Ethan Blanton <elb@pidgin.im> |
|---|---|
| date | Sun, 09 Jan 2005 17:00:16 +0000 |
| parents | 3e4ecbdf8d0a |
| children | 1a97d5e88d12 |
line wrap: on
line diff
--- 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()) {
