| 297 | } |
| 298 | |
| 299 | static int certificate_check_callback(git_cert *cert, int valid, const char *host, void *data) |
| 300 | { |
| 301 | char *error_message = NULL; |
| 302 | const int ret = certificateCheckCallback( |
| 303 | &error_message, |
| 304 | cert, |
| 305 | valid, |
| 306 | (char *)host, |
| 307 | data |
| 308 | ); |
| 309 | return set_callback_error(error_message, ret); |
| 310 | } |
| 311 | |
| 312 | static int pack_progress_callback(int stage, unsigned int current, unsigned int total, void *data) |
| 313 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…