| 516 | } |
| 517 | |
| 518 | static int smart_transport_callback( |
| 519 | git_transport **out, |
| 520 | git_remote *owner, |
| 521 | void *param) |
| 522 | { |
| 523 | char *error_message = NULL; |
| 524 | const int ret = smartTransportCallback( |
| 525 | &error_message, |
| 526 | out, |
| 527 | owner, |
| 528 | param); |
| 529 | return set_callback_error(error_message, ret); |
| 530 | } |
| 531 | |
| 532 | int _go_git_transport_register(const char *prefix, void *param) |
| 533 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…