| 284 | } |
| 285 | |
| 286 | static int update_tips_callback(const char *refname, const git_oid *a, const git_oid *b, void *data) |
| 287 | { |
| 288 | char *error_message = NULL; |
| 289 | const int ret = updateTipsCallback( |
| 290 | &error_message, |
| 291 | (char *)refname, |
| 292 | (git_oid *)a, |
| 293 | (git_oid *)b, |
| 294 | data |
| 295 | ); |
| 296 | return set_callback_error(error_message, ret); |
| 297 | } |
| 298 | |
| 299 | static int certificate_check_callback(git_cert *cert, int valid, const char *host, void *data) |
| 300 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…