changeset 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 387d06e21ae3
children d51f8280b507
files src/protocols/irc/irc.c
diffstat 1 files changed, 2 insertions(+), 4 deletions(-) [+]
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()) {