aboutsummaryrefslogtreecommitdiff
path: root/src/tool_cb_dbg.c
diff options
context:
space:
mode:
authorHanno Böck <hanno@hboeck.de>2017-03-30 14:59:14 +0200
committerDaniel Stenberg <daniel@haxx.se>2017-03-30 14:59:14 +0200
commitbaaf0ba358787dcab708449399fd5eda25311b4f (patch)
treeada80eaf5e4c1da1e2076ebc2b4d81a3d0320a5e /src/tool_cb_dbg.c
parent244e0a36bd01ebbbdbf009ca2be6b78f29740277 (diff)
curl: fix callback functions to match prototype
The function tool_debug_cb doesn't match curl_debug_callback in curl.h (unsigned vs. signed char* for 3rd param). Bug: https://curl.haxx.se/mail/lib-2017-03/0120.html
Diffstat (limited to 'src/tool_cb_dbg.c')
-rw-r--r--src/tool_cb_dbg.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tool_cb_dbg.c b/src/tool_cb_dbg.c
index f4252ad88..4eeb7b210 100644
--- a/src/tool_cb_dbg.c
+++ b/src/tool_cb_dbg.c
@@ -41,7 +41,7 @@ static void dump(const char *timebuf, const char *text,
*/
int tool_debug_cb(CURL *handle, curl_infotype type,
- unsigned char *data, size_t size,
+ char *data, size_t size,
void *userdata)
{
struct OperationConfig *operation = userdata;
@@ -209,7 +209,8 @@ int tool_debug_cb(CURL *handle, curl_infotype type,
break;
}
- dump(timebuf, text, output, data, size, config->tracetype, type);
+ dump(timebuf, text, output, (unsigned char *) data, size, config->tracetype,
+ type);
return 0;
}