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/pingpong.c | |
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/pingpong.c')
-rw-r--r-- | lib/pingpong.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/pingpong.c b/lib/pingpong.c index 3c9ca0df2..2e93d201f 100644 --- a/lib/pingpong.c +++ b/lib/pingpong.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -221,8 +221,7 @@ CURLcode Curl_pp_vsendf(struct pingpong *pp, } if(conn->data->set.verbose) - Curl_debug(conn->data, CURLINFO_HEADER_OUT, - s, (size_t)bytes_written, conn); + Curl_debug(conn->data, CURLINFO_HEADER_OUT, s, (size_t)bytes_written); if(bytes_written != (ssize_t)write_len) { /* the whole chunk was not sent, keep it around and adjust sizes */ @@ -370,7 +369,7 @@ CURLcode Curl_pp_readresp(curl_socket_t sockfd, #endif if(data->set.verbose) Curl_debug(data, CURLINFO_HEADER_IN, - pp->linestart_resp, (size_t)perline, conn); + pp->linestart_resp, (size_t)perline); /* * We pass all response-lines to the callback function registered |