diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2000-08-21 07:18:31 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2000-08-21 07:18:31 +0000 |
| commit | ea014d857fb14699a46f37201ecefcb7735f2667 (patch) | |
| tree | 8925b6a45d0801dd618c717598e2a07c1659e7aa /lib/libfetch/ftp.c | |
| parent | c8e1436029cb67502ef0527bd8982f4530231ef3 (diff) | |
Notes
Diffstat (limited to 'lib/libfetch/ftp.c')
| -rw-r--r-- | lib/libfetch/ftp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libfetch/ftp.c b/lib/libfetch/ftp.c index 7da413fd77bf..78e2de1edf5f 100644 --- a/lib/libfetch/ftp.c +++ b/lib/libfetch/ftp.c @@ -76,6 +76,7 @@ #define FTP_ANONYMOUS_USER "ftp" #define FTP_ANONYMOUS_PASSWORD "ftp" +#define FTP_CONNECTION_ALREADY_OPEN 125 #define FTP_OPEN_DATA_CONNECTION 150 #define FTP_OK 200 #define FTP_FILE_STATUS 213 @@ -452,7 +453,7 @@ _ftp_transfer(int cd, char *oper, char *file, if (verbose) _fetch_info("initiating transfer"); e = _ftp_cmd(cd, "%s %s", oper, _ftp_filename(file)); - if (e != FTP_OPEN_DATA_CONNECTION) + if (e != FTP_CONNECTION_ALREADY_OPEN && e != FTP_OPEN_DATA_CONNECTION) goto ouch; } else { |
