diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/server/getpart.c | 2 | ||||
-rw-r--r-- | tests/unit/unit1302.c | 2 | ||||
-rw-r--r-- | tests/unit/unit1303.c | 2 | ||||
-rw-r--r-- | tests/unit/unit1305.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/server/getpart.c b/tests/server/getpart.c index 960fbaa50..1952fbbe5 100644 --- a/tests/server/getpart.c +++ b/tests/server/getpart.c @@ -29,7 +29,7 @@ #include "curlx.h" /* from the private lib dir */ /* just to please curl_base64.h we create a fake struct */ -struct SessionHandle { +struct Curl_easy { int fake; }; diff --git a/tests/unit/unit1302.c b/tests/unit/unit1302.c index 66054da57..8dae5aad1 100644 --- a/tests/unit/unit1302.c +++ b/tests/unit/unit1302.c @@ -26,7 +26,7 @@ #include "curl_base64.h" #include "memdebug.h" /* LAST include file */ -static struct SessionHandle *data; +static struct Curl_easy *data; static CURLcode unit_setup(void) { diff --git a/tests/unit/unit1303.c b/tests/unit/unit1303.c index 7c0731a47..a4bd59826 100644 --- a/tests/unit/unit1303.c +++ b/tests/unit/unit1303.c @@ -25,7 +25,7 @@ #include "connect.h" #include "memdebug.h" /* LAST include file */ -static struct SessionHandle *data; +static struct Curl_easy *data; static CURLcode unit_setup(void) { diff --git a/tests/unit/unit1305.c b/tests/unit/unit1305.c index 95cfe2b5d..ad270f565 100644 --- a/tests/unit/unit1305.c +++ b/tests/unit/unit1305.c @@ -39,7 +39,7 @@ #include "memdebug.h" /* LAST include file */ -static struct SessionHandle *data; +static struct Curl_easy *data; static struct curl_hash hp; static char *data_key; static struct Curl_dns_entry *data_node; |