From 42c7a3b3224dc3ddd7be4b5820d66a1d0bc0f026 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 19 Jan 2021 10:43:44 +0100 Subject: curl_path: remove conn->data use --- lib/vssh/libssh2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/vssh/libssh2.c') diff --git a/lib/vssh/libssh2.c b/lib/vssh/libssh2.c index f2921352d..0e2d6f824 100644 --- a/lib/vssh/libssh2.c +++ b/lib/vssh/libssh2.c @@ -1275,7 +1275,7 @@ static CURLcode ssh_statemach_act(struct Curl_easy *data, bool *block) case SSH_SFTP_QUOTE_INIT: - result = Curl_getworkingpath(conn, sshc->homedir, &sftp_scp->path); + result = Curl_getworkingpath(data, sshc->homedir, &sftp_scp->path); if(result) { sshc->actualcode = result; state(data, SSH_STOP); @@ -2503,7 +2503,7 @@ static CURLcode ssh_statemach_act(struct Curl_easy *data, bool *block) break; case SSH_SCP_TRANS_INIT: - result = Curl_getworkingpath(conn, sshc->homedir, &sftp_scp->path); + result = Curl_getworkingpath(data, sshc->homedir, &sftp_scp->path); if(result) { sshc->actualcode = result; state(data, SSH_STOP); -- cgit v1.2.1