diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-06-12 00:10:43 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-06-12 16:00:27 +0200 |
commit | 5ae22272d1506e5c0e431f4ad60f1dc446f76715 (patch) | |
tree | 15a2b35f108675006b83af14e21253605076309a /lib/sendf.h | |
parent | 819f44dc07b0b60ea6f52478939dac4206b73146 (diff) | |
download | curl-5ae22272d1506e5c0e431f4ad60f1dc446f76715.tar.gz |
Curl_debug: remove dead printhost code
The struct field is never set (since 5e0d9aea3) so remove the use of it
and remove the connectdata pointer from the prototype.
Reported-by: Tejas
Bug: https://curl.haxx.se/mail/lib-2018-06/0054.html
Closes #2647
Diffstat (limited to 'lib/sendf.h')
-rw-r--r-- | lib/sendf.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/sendf.h b/lib/sendf.h index eb7bdd57e..7627fe6c5 100644 --- a/lib/sendf.h +++ b/lib/sendf.h @@ -85,8 +85,7 @@ CURLcode Curl_write_plain(struct connectdata *conn, /* the function used to output verbose information */ int Curl_debug(struct Curl_easy *data, curl_infotype type, - char *ptr, size_t size, - struct connectdata *conn); + char *ptr, size_t size); #endif /* HEADER_CURL_SENDF_H */ |