From: Gunter Knauf Date: Wed, 27 Jun 2007 10:12:48 +0000 (+0000) Subject: fixed wrong var name X-Git-Tag: curl-7_16_4~49 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a2060effed77c88e1349392a839ee49229fda1fe;p=thirdparty%2Fcurl.git fixed wrong var name --- diff --git a/lib/ssh.c b/lib/ssh.c index 7e42b22490..7b5d1a7883 100644 --- a/lib/ssh.c +++ b/lib/ssh.c @@ -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 {