Mercurial > pidgin
changeset 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 | aa8dbb7e0a4d |
children | 8e618a7111a5 |
files | src/gtkaccount.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gtkaccount.c Tue Jun 03 10:25:17 2003 +0000 +++ b/src/gtkaccount.c Tue Jun 03 10:27:56 2003 +0000 @@ -274,8 +274,8 @@ l != NULL && l2 != NULL; l = l->prev, l2 = l2->prev) { - GaimAccountUserSplit *split = l2->data; - GtkWidget *entry = l->data; + GaimAccountUserSplit *split = l->data; + GtkWidget *entry = l2->data; const char *value = NULL; char *c;