mirror of
https://github.com/curl/curl.git
synced 2026-07-17 10:47:16 +03:00
fixed wrong var name
This commit is contained in:
parent
33b9daaa4c
commit
a2060effed
1 changed files with 1 additions and 1 deletions
|
|
@ -1493,7 +1493,7 @@ CURLcode Curl_sftp_do(struct connectdata *conn, bool *done)
|
|||
if (tmpLine == NULL) {
|
||||
return CURLE_OUT_OF_MEMORY;
|
||||
}
|
||||
result = Curl_client_write(conn, CLIENTWRITE_BODY, tmpLine, 0);
|
||||
res = Curl_client_write(conn, CLIENTWRITE_BODY, tmpLine, 0);
|
||||
Curl_safefree(tmpLine);
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue