mirror of
https://github.com/curl/curl.git
synced 2026-08-25 04:13:32 +03:00
vtls: make it 'struct Curl_ssl_session'
Use uppercase C for internal symbols. Closes #5906
This commit is contained in:
parent
221a584df9
commit
3acb2abdf5
5 changed files with 11 additions and 11 deletions
|
|
@ -92,7 +92,7 @@ curl_share_setopt(struct Curl_share *share, CURLSHoption option, ...)
|
|||
if(!share->sslsession) {
|
||||
share->max_ssl_sessions = 8;
|
||||
share->sslsession = calloc(share->max_ssl_sessions,
|
||||
sizeof(struct curl_ssl_session));
|
||||
sizeof(struct Curl_ssl_session));
|
||||
share->sessionage = 0;
|
||||
if(!share->sslsession)
|
||||
res = CURLSHE_NOMEM;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue