# HG changeset patch # User Eric Warmenhoven # Date 1004150941 0 # Node ID 4054a08494619c67d7a3eb73254e24de63bd27a2 # Parent f119632012bc144a0443aef849d49604f6e4594e [gaim-migrate @ 2641] forgot about this part. committer: Tailor Script diff -r f119632012bc -r 4054a0849461 src/multi.c --- a/src/multi.c Sat Oct 27 02:38:07 2001 +0000 +++ b/src/multi.c Sat Oct 27 02:49:01 2001 +0000 @@ -247,6 +247,8 @@ a->options = u->options; a->protocol = u->protocol; + txt = gtk_entry_get_text(GTK_ENTRY(u->name)); + g_snprintf(a->username, sizeof(a->username), "%s", txt); txt = gtk_entry_get_text(GTK_ENTRY(u->pass)); if (a->options & OPT_USR_REM_PASS) g_snprintf(a->password, sizeof(a->password), "%s", txt); @@ -254,6 +256,7 @@ a->password[0] = '\0'; i = gtk_clist_find_row_from_data(GTK_CLIST(list), a); + gtk_clist_set_text(GTK_CLIST(list), i, 0, a->username); gtk_clist_set_text(GTK_CLIST(list), i, 2, (a->options & OPT_USR_AUTO) ? "True" : "False"); gtk_clist_set_text(GTK_CLIST(list), i, 3, proto_name(a->protocol));