aboutsummaryrefslogtreecommitdiff
path: root/lib/ftp.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ftp.c')
-rw-r--r--lib/ftp.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index 293a20e2c..2a2e519c9 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -296,6 +296,9 @@ CURLcode Curl_ftp_connect(struct connectdata *conn)
memset(ftp, 0, sizeof(struct FTP));
conn->proto.ftp = ftp;
+ /* We always support persistant connections on ftp */
+ conn->bits.close = FALSE;
+
/* get some initial data into the ftp struct */
ftp->bytecountp = &conn->bytecount;