| 206 | } |
| 207 | |
| 208 | int |
| 209 | cib_process_sync_one(const char *op, int options, const char *section, xmlNode * req, |
| 210 | xmlNode * input, xmlNode * existing_cib, xmlNode ** result_cib, |
| 211 | xmlNode ** answer) |
| 212 | { |
| 213 | #ifdef CIBPIPE |
| 214 | return -EINVAL; |
| 215 | #else |
| 216 | return sync_our_cib(req, FALSE); |
| 217 | #endif |
| 218 | } |
| 219 | |
| 220 | int sync_in_progress = 0; |
| 221 |
nothing calls this directly
no test coverage detected