We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d72e13b commit 1ca8127Copy full SHA for 1ca8127
src/remote_callbacks.rs
@@ -431,7 +431,9 @@ extern "C" fn certificate_check_cb(
431
});
432
match ok {
433
Some(Ok(CertificateCheckStatus::CertificateOk)) => 0,
434
- Some(Ok(CertificateCheckStatus::CertificatePassthrough)) => raw::GIT_PASSTHROUGH as c_int,
+ Some(Ok(CertificateCheckStatus::CertificatePassthrough)) => {
435
+ raw::GIT_PASSTHROUGH as c_int
436
+ }
437
Some(Err(e)) => unsafe { e.raw_set_git_error() },
438
None => {
439
// Panic. The *should* get resumed by some future call to check().
0 commit comments