comparison src/server.c @ 4996:73aef6d0f497

[gaim-migrate @ 5331] this is better committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Fri, 04 Apr 2003 16:30:52 +0000
parents 088566495617
children 8e55a4d362a3
comparison
equal deleted inserted replaced
4995:ed2a6196ccab 4996:73aef6d0f497
393 GList *tobemoved = NULL; 393 GList *tobemoved = NULL;
394 GaimBlistNode *b = ((GaimBlistNode*)old_group)->child; 394 GaimBlistNode *b = ((GaimBlistNode*)old_group)->child;
395 395
396 while (b) { 396 while (b) {
397 struct buddy *bd = (struct buddy *)b; 397 struct buddy *bd = (struct buddy *)b;
398 if (bd->account = g->account) 398 if (bd->account == g->account)
399 tobemoved = g_list_append(tobemoved, bd->name); 399 tobemoved = g_list_append(tobemoved, bd->name);
400 b = b->next; 400 b = b->next;
401 } 401 }
402 402
403 if (g->prpl->rename_group) { 403 if (g->prpl->rename_group) {