mirror of https://github.com/axmolengine/axmol.git
correct assign to equal in cert trust expression
This commit is contained in:
parent
47891b81af
commit
e4bf6584db
|
@ -199,7 +199,7 @@
|
|||
CFRelease(certArrayRef);
|
||||
}
|
||||
//Did our custom trust chain evaluate successfully?
|
||||
return trustResult = kSecTrustResultUnspecified || trustResult == kSecTrustResultProceed;
|
||||
return trustResult == kSecTrustResultUnspecified || trustResult == kSecTrustResultProceed;
|
||||
}
|
||||
|
||||
- (void) connection:(NSURLConnection *)connection willSendRequestForAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
|
||||
|
|
Loading…
Reference in New Issue