| 195 | } |
| 196 | |
| 197 | int |
| 198 | cib_process_sync(const char *op, int options, const char *section, xmlNode * req, xmlNode * input, |
| 199 | xmlNode * existing_cib, xmlNode ** result_cib, xmlNode ** answer) |
| 200 | { |
| 201 | #ifdef CIBPIPE |
| 202 | return -EINVAL; |
| 203 | #else |
| 204 | return sync_our_cib(req, TRUE); |
| 205 | #endif |
| 206 | } |
| 207 | |
| 208 | int |
| 209 | cib_process_sync_one(const char *op, int options, const char *section, xmlNode * req, |
nothing calls this directly
no test coverage detected