diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-09-02 12:17:49 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-09-02 22:41:59 +0200 |
commit | 3acb2abdf5c712a11d281f45222efe26e7675656 (patch) | |
tree | 882aea4f36e3a4c12c5d490eb3ff937b29ce606a /lib/share.c | |
parent | 221a584df9ea12d2d86e8ec5f0d855d7b19f618f (diff) | |
download | curl-3acb2abdf5c712a11d281f45222efe26e7675656.tar.gz |
vtls: make it 'struct Curl_ssl_session'
Use uppercase C for internal symbols.
Closes #5906
Diffstat (limited to 'lib/share.c')
-rw-r--r-- | lib/share.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/share.c b/lib/share.c index a2d896042..407ac3453 100644 --- a/lib/share.c +++ b/lib/share.c @@ -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; |