comparison src/gtkaccount.c @ 5705:cd408d69ad2e

[gaim-migrate @ 6126] Fixed the order of two variables. Now we shouldn't have account corruption on protocols like Jabber and IRC. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 03 Jun 2003 10:27:56 +0000
parents cee14870644c
children 1d5c5acfc846
comparison
equal deleted inserted replaced
5704:aa8dbb7e0a4d 5705:cd408d69ad2e
272 for (l = g_list_last(dialog->user_split_entries), 272 for (l = g_list_last(dialog->user_split_entries),
273 l2 = g_list_last(user_splits); 273 l2 = g_list_last(user_splits);
274 l != NULL && l2 != NULL; 274 l != NULL && l2 != NULL;
275 l = l->prev, l2 = l2->prev) { 275 l = l->prev, l2 = l2->prev) {
276 276
277 GaimAccountUserSplit *split = l2->data; 277 GaimAccountUserSplit *split = l->data;
278 GtkWidget *entry = l->data; 278 GtkWidget *entry = l2->data;
279 const char *value = NULL; 279 const char *value = NULL;
280 char *c; 280 char *c;
281 281
282 if (dialog->account != NULL) { 282 if (dialog->account != NULL) {
283 c = strrchr(username, 283 c = strrchr(username,