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/ssh-libssh.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/ssh-libssh.c')
-rw-r--r-- | lib/ssh-libssh.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/ssh-libssh.c b/lib/ssh-libssh.c index 34ef490c4..69c87ac67 100644 --- a/lib/ssh-libssh.c +++ b/lib/ssh-libssh.c @@ -1306,7 +1306,7 @@ static CURLcode myssh_statemach_act(struct connectdata *conn, bool *block) if(data->set.verbose) { Curl_debug(data, CURLINFO_DATA_OUT, (char *)sshc->readdir_filename, - sshc->readdir_len, conn); + sshc->readdir_len); } } else { @@ -1423,7 +1423,7 @@ static CURLcode myssh_statemach_act(struct connectdata *conn, bool *block) /* output debug output if that is requested */ if(data->set.verbose) { Curl_debug(data, CURLINFO_DATA_OUT, sshc->readdir_line, - sshc->readdir_currLen, conn); + sshc->readdir_currLen); } data->req.bytecount += sshc->readdir_currLen; } @@ -2500,8 +2500,8 @@ static void sftp_quote(struct connectdata *conn) return; } if(data->set.verbose) { - Curl_debug(data, CURLINFO_HEADER_OUT, (char *) "PWD\n", 4, conn); - Curl_debug(data, CURLINFO_HEADER_IN, tmp, strlen(tmp), conn); + Curl_debug(data, CURLINFO_HEADER_OUT, (char *) "PWD\n", 4); + Curl_debug(data, CURLINFO_HEADER_IN, tmp, strlen(tmp)); } /* this sends an FTP-like "header" to the header callback so that the current directory can be read very similar to how it is read when |