Changeset 5080
- Timestamp:
- Apr 27, 2015 8:05:31 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/ssl_sock_ossl.c
r5078 r5080 689 689 } 690 690 #endif 691 } 692 } else { 693 X509_STORE *pkix_validation_store = SSL_CTX_get_cert_store(ctx); 694 if (NULL != pkix_validation_store) { 695 #if defined(X509_V_FLAG_TRUSTED_FIRST) 696 X509_STORE_set_flags(pkix_validation_store, 697 X509_V_FLAG_TRUSTED_FIRST); 698 #endif 699 #if defined(X509_V_FLAG_PARTIAL_CHAIN) 700 X509_STORE_set_flags(pkix_validation_store, 701 X509_V_FLAG_PARTIAL_CHAIN); 702 #endif 691 703 } 692 704 }
Note: See TracChangeset
for help on using the changeset viewer.