Skip to content
Snippets Groups Projects
Commit 52c5e948 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

axtls: Fixed compile after compile 31c521b0

parent 67176e2b
No related branches found
No related tags found
No related merge requests found
......@@ -265,10 +265,10 @@ static CURLcode connect_prep(struct connectdata *conn, int sockindex)
infof (data, "SSL re-using session ID\n");
ssl = ssl_client_new(ssl_ctx, conn->sock[sockindex],
ssl_sessionid, (uint8_t)ssl_idsize);
Curl_ssl_sessionid_unlock();
Curl_ssl_sessionid_unlock(conn);
}
else {
Curl_ssl_sessionid_unlock();
Curl_ssl_sessionid_unlock(conn);
ssl = ssl_client_new(ssl_ctx, conn->sock[sockindex], NULL, 0);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment