| 287 | } |
| 288 | |
| 289 | void |
| 290 | attach_cib_generation(xmlNode * msg, const char *field, xmlNode * a_cib) |
| 291 | { |
| 292 | xmlNode *generation = create_xml_node(NULL, XML_CIB_TAG_GENERATION_TUPPLE); |
| 293 | |
| 294 | if (a_cib != NULL) { |
| 295 | copy_in_properties(generation, a_cib); |
| 296 | } |
| 297 | add_message_xml(msg, field, generation); |
| 298 | free_xml(generation); |
| 299 | } |
| 300 | |
| 301 | void |
| 302 | cib_replace_notify(const char *origin, xmlNode * update, int result, xmlNode * diff) |
no test coverage detected