mirror of
https://github.com/yhirose/cpp-httplib
synced 2024-11-21 14:29:10 -07:00
SSLClient::set_ca_cert_store: mark as inline (#435)
This commit is contained in:
parent
3451da940d
commit
da746c6e67
1 changed files with 1 additions and 1 deletions
|
@ -4756,7 +4756,7 @@ inline void SSLClient::set_ca_cert_path(const char *ca_cert_file_path,
|
|||
if (ca_cert_dir_path) { ca_cert_dir_path_ = ca_cert_dir_path; }
|
||||
}
|
||||
|
||||
void SSLClient::set_ca_cert_store(X509_STORE *ca_cert_store) {
|
||||
inline void SSLClient::set_ca_cert_store(X509_STORE *ca_cert_store) {
|
||||
if (ca_cert_store) { ca_cert_store_ = ca_cert_store; }
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue