Skip to content

Commit

Permalink
Merge pull request #2850 from chamons/d15-4-xi-tls-fix
Browse files Browse the repository at this point in the history
Fix AppleTLS SecTrustResult by cherry picking fix + bump mono d15-4-xi
  • Loading branch information
Adrian Murphy authored Oct 5, 2017
2 parents 9a9f054 + c69575a commit 2f8bbec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion external/mono
2 changes: 1 addition & 1 deletion src/Security/Tls/AppleCertificateHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public static bool InvokeSystemCertificateValidator (
}

var result = trust.Evaluate ();
if (result == SecTrustResult.Unspecified)
if (result == SecTrustResult.Unspecified || result == SecTrustResult.Proceed)
return true;

errors |= MonoSslPolicyErrors.RemoteCertificateChainErrors;
Expand Down

0 comments on commit 2f8bbec

Please sign in to comment.