| 85 | } |
| 86 | |
| 87 | static int |
| 88 | cib_prepare_data(xmlNode * request, xmlNode ** data, const char **section) |
| 89 | { |
| 90 | xmlNode *input_fragment = get_message_xml(request, F_CIB_CALLDATA); |
| 91 | |
| 92 | *section = crm_element_value(request, F_CIB_SECTION); |
| 93 | *data = cib_prepare_common(input_fragment, *section); |
| 94 | /* crm_log_xml_debug(*data, "data"); */ |
| 95 | return pcmk_ok; |
| 96 | } |
| 97 | |
| 98 | static int |
| 99 | cib_prepare_sync(xmlNode * request, xmlNode ** data, const char **section) |
nothing calls this directly
no test coverage detected