aboutsummaryrefslogtreecommitdiff
path: root/lib/ftp.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-08-26 23:13:25 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-08-26 23:13:25 +0000
commit27a2e590cd64cd6f31472681f0e61167b729e005 (patch)
treebb014f0d3cd310f5ce31461ce801f3e22c03de74 /lib/ftp.c
parent7172fa058a84cea26e31dd1c0bdc44889efc2949 (diff)
SSL_INSECURE support and usage added
Diffstat (limited to 'lib/ftp.c')
-rw-r--r--lib/ftp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index 11378b909..05d936c79 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -711,8 +711,7 @@ CURLcode ftp_cwd(struct connectdata *conn, char *path)
CURLcode result;
FTPSENDF(conn, "CWD %s", path);
- nread = Curl_GetFTPResponse(
- conn->data->state.buffer, conn, &ftpcode);
+ nread = Curl_GetFTPResponse(conn->data->state.buffer, conn, &ftpcode);
if (nread < 0)
return CURLE_OPERATION_TIMEOUTED;