# HG changeset patch # User Richard Laager # Date 1225658535 0 # Node ID 2e179c60f8c949aa6a6cc06c1a836b8b7c42fa5c # Parent 88a66cb4a8d909be5368815c20694d83846fb1e3 Fix one struct hiding issue. diff -r 88a66cb4a8d9 -r 2e179c60f8c9 pidgin/gtklog.c --- a/pidgin/gtklog.c Sun Nov 02 19:14:51 2008 +0000 +++ b/pidgin/gtklog.c Sun Nov 02 20:42:15 2008 +0000 @@ -760,7 +760,9 @@ return; } - for (child = contact->node.child ; child ; child = child->next) { + for (child = purple_blist_node_get_first_child((PurpleBlistNode*)contact) ; + child != NULL ; + child = purple_blist_node_get_sibling_next(child)) { if (!PURPLE_BLIST_NODE_IS_BUDDY(child)) continue;