diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-11-27 00:50:52 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-11-27 00:50:52 +0000 |
commit | bbf80d0f93687b0e0c797ce5762eca2f07fcf867 (patch) | |
tree | c9d4370c034aa8253ed223a434fd00d89267fc47 /lib | |
parent | 6003f24f78ddecd93bc68ad945d28ff0007dc57e (diff) |
commented out the EPSV support
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ftp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1343,8 +1343,8 @@ CURLcode ftp_use_pasv(struct connectdata *conn) we're already connected to, as then we can skip the name function call below, in similar style that we do for the EPSV reply */ } -#if 1 - else if (strcmp(mode[modeoff], "EPSV") == 0) { +#if 0 + else if (229 == results[modeoff]) { char *ptr = strchr(buf, '('); if(ptr) { unsigned int num; |