From: Gunter Knauf Date: Sun, 28 Jan 2007 12:35:39 +0000 (+0000) Subject: another small fix to directory listing output; disabled CURL_LIBSSH2_DEBUG. X-Git-Tag: curl-7_16_1~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d31153584ee81d1bdc0d127ae47426fe9bd21060;p=curl another small fix to directory listing output; disabled CURL_LIBSSH2_DEBUG. --- diff --git a/lib/ssh.c b/lib/ssh.c index ed38802e3..47c3dd45f 100644 --- a/lib/ssh.c +++ b/lib/ssh.c @@ -21,7 +21,7 @@ * $Id$ ***************************************************************************/ -#define CURL_LIBSSH2_DEBUG +/* #define CURL_LIBSSH2_DEBUG */ #include "setup.h" @@ -808,7 +808,7 @@ CURLcode Curl_sftp_do(struct connectdata *conn, bool *done) } currLen += snprintf(line+currLen, totalLen-currLen, "\n"); - res = Curl_client_write(conn, CLIENTWRITE_BOTH, line, 0); + res = Curl_client_write(conn, CLIENTWRITE_BODY, line, 0); free(line); } }