1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

gskit: correct the gskit_send() prototype

gskit_send() first paramater is a pointer to Curl_easy not connectdata
struct.

Closes #6570
Fixes #6569
This commit is contained in:
Jon Rumsey 2021-02-04 23:02:18 +00:00 committed by Daniel Stenberg
parent 457e864f5e
commit 4a6a5f0b4a
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -610,7 +610,7 @@ static void close_one(struct ssl_connect_data *connssl, struct Curl_easy *data,
}
static ssize_t gskit_send(struct connectdata *conn, int sockindex,
static ssize_t gskit_send(struct Curl_easy *data, int sockindex,
const void *mem, size_t len, CURLcode *curlcode)
{
struct connectdata *conn = data->conn;