comparison src/server.c @ 1303:9c34f99af79e

[gaim-migrate @ 1313] if you ignore someone in chat, and they leave and return, they stay ignored. properly. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 19 Dec 2000 03:28:33 +0000
parents cb84b5c6d9ab
children f3303fc05572
comparison
equal deleted inserted replaced
1302:4c5c2fcb83cd 1303:9c34f99af79e
660 char *tmp = b->in_room->data; 660 char *tmp = b->in_room->data;
661 b->in_room = g_list_remove(b->in_room, tmp); 661 b->in_room = g_list_remove(b->in_room, tmp);
662 g_free(tmp); 662 g_free(tmp);
663 } 663 }
664 664
665 while (b->ignored) {
666 g_free(b->ignored->data);
667 b->ignored = g_list_remove(b->ignored, b->ignored->data);
668 }
669
665 g_free(b); 670 g_free(b);
666 } 671 }
667 672
668 void serv_got_chat_in(struct gaim_connection *g, int id, char *who, int whisper, char *message) 673 void serv_got_chat_in(struct gaim_connection *g, int id, char *who, int whisper, char *message)
669 { 674 {