| 1206 | } |
| 1207 | |
| 1208 | void |
| 1209 | purge_diff_markers(xmlNode *a_node) |
| 1210 | { |
| 1211 | xmlNode *child = NULL; |
| 1212 | CRM_CHECK(a_node != NULL, return); |
| 1213 | |
| 1214 | xml_remove_prop(a_node, XML_DIFF_MARKER); |
| 1215 | for(child = __xml_first_child(a_node); child != NULL; child = __xml_next(child)) { |
| 1216 | purge_diff_markers(child); |
| 1217 | } |
| 1218 | } |
| 1219 | |
| 1220 | static void |
| 1221 | save_xml_to_file(xmlNode *xml, const char *desc, const char *filename) |
no test coverage detected