Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Better error checking. | eivind | 1998-12-09 | 1 | -3/+4 |
| | |||||
* | fd_set is documented to be a typedef, not a struct. Conform more | imp | 1998-07-26 | 2 | -11/+9 |
| | | | | | | closely to the documented interface. Inspired-by: similar changes in OpenBSD | ||||
* | 'remaining' must be declared off_t instead of int to avoid FPE when the size of | jmz | 1998-07-19 | 1 | -4/+5 |
| | | | | | the file to transfer is very large (577985293894855484 bytes in the case I encountered, but this was a buggy ftp server :-)) | ||||
* | Don't assume that hp->h_lenght == 4. Be conservative in its use. | imp | 1998-06-09 | 1 | -8/+9 |
| | | | | Submitted by: J. Assange a long time ago. | ||||
* | Fix a few minor typos and style nits. | steve | 1998-03-01 | 1 | -7/+7 |
| | | | | | PR: 5883 Submitted by: hnokubi@yyy.or.jp | ||||
* | Cleanup code so that long lines to be quoted don't get truncated. | steve | 1998-02-14 | 1 | -13/+11 |
| | | | | | PR: 5679 Reviewed by: Bruce Evans <bde@zeta.org.au> | ||||
* | Don't print garbage when user enters EOF at name prompt. | pst | 1998-02-03 | 1 | -3/+4 |
| | | | | | PR: 5565 Submitted by: Jens Schweikhardt | ||||
* | Revert to previous behaviour, only generate NLST for explicit "nlist" | msmith | 1998-01-09 | 1 | -3/+3 |
| | | | | | command. Submitted by: wollman | ||||
* | One more ctype cast | ache | 1997-12-16 | 1 | -2/+2 |
| | |||||
* | Add more (unsigned char) casts to ctype macros | ache | 1997-12-16 | 2 | -6/+6 |
| | |||||
* | Add (unsigned char) cast to ctype macro | ache | 1997-12-16 | 1 | -3/+3 |
| | |||||
* | Sync with NetBSD v1.3. | pst | 1997-12-13 | 14 | -303/+613 |
| | | | | | Keep I8N1 and quarantine port code. Replace our security fix with NetBSD's (their idea was better). | ||||
* | Mention pftp as an alternative command to enable passive mode. | roberto | 1997-12-08 | 1 | -2/+10 |
| | |||||
* | Style fix. | guido | 1997-11-19 | 1 | -5/+7 |
| | | | | Complaint by: Bruce | ||||
* | Make sure you do not get unexpected surprises whena remote file starts with '|'. | guido | 1997-11-17 | 1 | -2/+13 |
| | | | | Reviewed by: Joerg Wunsch | ||||
* | Changes to support full make parallelism (-j<n>) in the world | jkh | 1997-10-05 | 1 | -1/+2 |
| | | | | | | target. Reviewed by: <many different folks> Submitted by: Nickolay N. Dudorov" <nnd@nnd.itfs.nsk.su> | ||||
* | - Changed default PAGER from 'less' to 'more', since we don't have less | nate | 1997-09-05 | 1 | -2/+2 |
| | | | | | | | in the base system. PR: bin/4471 Submitted by: Dmitry Khrustalev <dima@xyzzy.machaon.ru> | ||||
* | Replace hand-made tolower conversions with real tolower from ctype | ache | 1997-06-27 | 1 | -8/+6 |
| | |||||
* | Protect isspace by isascii to not count high spaces | ache | 1997-06-27 | 2 | -6/+6 |
| | |||||
* | Activate collate to sort local files properly for completion | ache | 1997-06-27 | 2 | -6/+6 |
| | |||||
* | Localize it (ctype) | ache | 1997-06-27 | 6 | -27/+30 |
| | | | | | 8bit ctype clean fixes (I can't input 8bit chars otherwise in this new ftp, it beeps) | ||||
* | Import substantial improvements to ftp(1) from NetBSD, largely the | msmith | 1997-06-25 | 14 | -1398/+3555 |
| | | | | | | | | | | | | | | | | work of Luke Mewburn. This includes, but is not limited to : - commandline editing and history. - local and remote filename completion. - a new progress display. - the ability to access files using either the ftp or http protocols, and use http proxies for ftp transfers. The FreeeBSD "restricted ports" functionality was preserved. Obtained from: NetBSD | ||||
* | Meg -> Mbytes | dg | 1997-06-10 | 1 | -1/+1 |
| | | | | | PR: 3829 Submitted by: Josh Gilliam <josh@quick.net> | ||||
* | compare return value from getopt against -1 rather than EOF, per the final | imp | 1997-03-29 | 1 | -1/+1 |
| | | | | posix standard on the topic. | ||||
* | Buffer overflow from Keith Bostic. | imp | 1997-03-24 | 1 | -1/+1 |
| | | | | Obtained from: BSDi by way of Keith Bostic | ||||
* | Fix problem in ftp and case mapping mode where the converted string wasn't | imp | 1996-12-17 | 1 | -0/+1 |
| | | | | | | | | | terminated properly. Fix is from the PR and works for the test cases I threw at it. Should be safe and desirable for back porting to 2.2 or earlier if there are people still comitting to -stable. Submitted by: Marc Slemko <marcs@znep.com> Closes PR: 1864 | ||||
* | Apply a long-forgotten change to make FTP_PASSIVE_MODE just that | jkh | 1996-11-02 | 1 | -1/+1 |
| | | | | | much more universal (in FreeBSD, anyway) in taking some of the pain out of firewalls. | ||||
* | Make "ftp" a synonym for "open" | phk | 1996-09-19 | 1 | -0/+1 |
| | |||||
* | Fix a couple of file-descriptor leaks. | phk | 1996-08-23 | 1 | -0/+3 |
| | |||||
* | 1. Remove SOCKS support (unneded with SOCKS v5 port) | pst | 1996-05-30 | 3 | -61/+20 |
| | | | | 2. Update quarantine port support to use new kernel mechanism. | ||||
* | Changed printf for reporting transfer stats from using %.2g to %.2f to | scrappy | 1996-05-26 | 1 | -2/+6 |
| | | | | | | | get rid of "scientific notation" reporting (PR#bin/329) Added a switch so that if bytes/sec > 1Meg/sec, report in Meg/sec instead of Kbytes/sec | ||||
* | Add support for socks | pst | 1996-04-23 | 2 | -0/+11 |
| | |||||
* | Fix a bunch of spelling errors in a bunch of man pages. | mpp | 1996-01-30 | 1 | -1/+1 |
| | |||||
* | Use data ports in the range 40000..44999 by default to enhance FTP usability | pst | 1995-08-05 | 8 | -10/+84 |
| | | | | | | | in a firewall environment. Original idea by Mark Tracy (?). Reviewed by: wollman Submitted by: pst | ||||
* | Remove trailing whitespace. | rgrimes | 1995-05-30 | 4 | -20/+20 |
| | |||||
* | Use port 21 as default if getservbyname fails to find it for us. This let | phk | 1995-04-20 | 1 | -2/+6 |
| | | | | us remove some crud from the install-procedure. | ||||
* | Fix checking of directory access for "/foo". The parent directory is | bde | 1995-02-16 | 2 | -2/+4 |
| | | | | "/", not "". | ||||
* | Add -p flag and pftp alias for passive ftp | pst | 1994-09-29 | 3 | -3/+18 |
| | |||||
* | Declare fuction setpassive in file cmds.c void and update corresponding | swallace | 1994-09-18 | 2 | -1/+2 |
| | | | | prototype declaration in extern.h. | ||||
* | Kludge to workaround ftp coredumping when password is specified before | dg | 1994-09-18 | 1 | -1/+1 |
| | | | | | | login in .netrc. Submitted by: John Kohl | ||||
* | Add support for passive mode FTP (default off) to base FTP client to support | pst | 1994-09-15 | 6 | -0/+68 |
| | | | | | users behind packet filtering firewalls. Obtained from: David Carrel <carrel@cisco.com> | ||||
* | Fixed stupid bug which prevented any command line options from being | dg | 1994-08-31 | 1 | -1/+1 |
| | | | | | | understood. Submitted by: Uwe Arndt (arndt@mailhost.uni-koblenz.de) | ||||
* | BSD 4.4 Lite Usr.bin Sources | rgrimes | 1994-05-27 | 11 | -0/+6263 |