| 323 | } |
| 324 | |
| 325 | static int push_transfer_progress_callback( |
| 326 | unsigned int current, |
| 327 | unsigned int total, |
| 328 | size_t bytes, |
| 329 | void *data) |
| 330 | { |
| 331 | char *error_message = NULL; |
| 332 | const int ret = pushTransferProgressCallback( |
| 333 | &error_message, |
| 334 | current, |
| 335 | total, |
| 336 | bytes, |
| 337 | data |
| 338 | ); |
| 339 | return set_callback_error(error_message, ret); |
| 340 | } |
| 341 | |
| 342 | static int push_update_reference_callback(const char *refname, const char *status, void *data) |
| 343 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…