MCPcopy Create free account
hub / github.com/ClusterLabs/pacemaker / purge_diff_markers

Function purge_diff_markers

lib/common/xml.c:1208–1218  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1206}
1207
1208void
1209purge_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
1220static void
1221save_xml_to_file(xmlNode *xml, const char *desc, const char *filename)

Callers 1

apply_xml_diffFunction · 0.85

Calls 3

xml_remove_propFunction · 0.85
__xml_first_childFunction · 0.85
__xml_nextFunction · 0.85

Tested by

no test coverage detected