| 535 | } |
| 536 | |
| 537 | static int smart_subtransport_action_callback( |
| 538 | git_smart_subtransport_stream **out, |
| 539 | git_smart_subtransport *transport, |
| 540 | const char *url, |
| 541 | git_smart_service_t action) |
| 542 | { |
| 543 | char *error_message = NULL; |
| 544 | const int ret = smartSubtransportActionCallback( |
| 545 | &error_message, |
| 546 | out, |
| 547 | transport, |
| 548 | (char *)url, |
| 549 | action); |
| 550 | return set_callback_error(error_message, ret); |
| 551 | } |
| 552 | |
| 553 | static int smart_subtransport_close_callback(git_smart_subtransport *transport) |
| 554 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…