| 288 | } |
| 289 | |
| 290 | int |
| 291 | cib_process_replace_svr(const char *op, int options, const char *section, xmlNode * req, |
| 292 | xmlNode * input, xmlNode * existing_cib, xmlNode ** result_cib, |
| 293 | xmlNode ** answer) |
| 294 | { |
| 295 | const char *tag = crm_element_name(input); |
| 296 | int rc = |
| 297 | cib_process_replace(op, options, section, req, input, existing_cib, result_cib, answer); |
| 298 | if (rc == pcmk_ok && safe_str_eq(tag, XML_TAG_CIB)) { |
| 299 | sync_in_progress = 0; |
| 300 | } |
| 301 | return rc; |
| 302 | } |
| 303 | |
| 304 | static int |
| 305 | delete_cib_object(xmlNode * parent, xmlNode * delete_spec) |
nothing calls this directly
no test coverage detected