pidgin: a1d92d07: Word wrap a little.
qulogic at pidgin.im
qulogic at pidgin.im
Sat May 2 19:15:40 EDT 2009
-----------------------------------------------------------------
Revision: a1d92d07631246e44303c044d75179ba68158e8b
Ancestor: 843fadc72b6ceaff5a294621e71b36f8a002fdce
Author: qulogic at pidgin.im
Date: 2009-05-02T23:02:11
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/a1d92d07631246e44303c044d75179ba68158e8b
Modified files:
libpurple/protocols/msn/notification.c
ChangeLog:
Word wrap a little.
-------------- next part --------------
============================================================
--- libpurple/protocols/msn/notification.c 7e812d54aaba864079f5ff6bcc2b5206c3f0ef3f
+++ libpurple/protocols/msn/notification.c 5af74e102ca714a8028cdd66057f7db7db9e8414
@@ -785,13 +785,17 @@ adl_cmd_parse(MsnCmdProc *cmdproc, MsnCo
purple_debug_info("msn", "Invalid XML in ADL!\n");
return;
}
- for (domain_node = xmlnode_get_child(root, "d"); domain_node; domain_node = xmlnode_get_next_twin(domain_node)) {
+ for (domain_node = xmlnode_get_child(root, "d");
+ domain_node;
+ domain_node = xmlnode_get_next_twin(domain_node)) {
const gchar * domain = NULL;
xmlnode *contact_node = NULL;
domain = xmlnode_get_attrib(domain_node, "n");
- for (contact_node = xmlnode_get_child(domain_node, "c"); contact_node; contact_node = xmlnode_get_next_twin(contact_node)) {
+ for (contact_node = xmlnode_get_child(domain_node, "c");
+ contact_node;
+ contact_node = xmlnode_get_next_twin(contact_node)) {
const gchar *list;
gint list_op = 0;
More information about the Commits
mailing list