diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-08-10 17:11:41 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-08-10 17:11:41 +0000 |
commit | 5dadbd094e58ed1f6c701381175ffa35224e8aec (patch) | |
tree | 448d90dd8d7e2d9a1c04ff48a63229f474992e4c /lib | |
parent | 514a8739b669fa473560559a5cae225634bcc2f5 (diff) |
don't claim the PASV connect is connected unless it *really* is!
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2114,7 +2114,7 @@ CURLcode ftp_perform(struct connectdata *conn, else { /* We have chosen (this is default) to use the PASV command */ result = ftp_use_pasv(conn, connected); - if(connected) + if(!result && *connected) infof(data, "Connected the data stream with PASV!\n"); } |