Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-04-17 | Support proxies which require a password just like ftp servers accept passwords | Dale Rahn | |
based on code from Florent Thoumie, ok millert@ | |||
2007-04-07 | use strtonum, from jason dixon | Ted Unangst | |
2007-03-24 | Use MAXPATHLEN for buffer, which is only used for path construction | Moritz Jodeit | |
and fix handling of empty macdefs, which could result in the mac_end ptr beeing smaller than mac_start, resulting in crashes later on. From Nicholas Marriott. ok millert@ | |||
2007-03-22 | Remove wrong length check, which ignored the '/' character | Moritz Jodeit | |
and let snprintf(3) decide if the path fitted into the buffer. Inspired by a diff from Nicholas Marriott. OK millert@ ray@ | |||
2007-03-22 | Fix buffer overflow when parsing the .netrc file. | Moritz Jodeit | |
From Nicholas Marriott. ok millert@ deraadt@ | |||
2007-03-06 | Since our ftp client opportuniticly tries EPSV, then falls back to PASV for | Bob Beck | |
older clients, dont' spew out "500 unimplimented" when a sever that doesn't do EPSV doesn't like it, just notice, and fall back to PASV, then complain if that fails. ok deraadt@ | |||
2007-02-08 | Remove double semicolons. | Ray Lai | |
From Pierre Riteau <pierre dot riteau at free dot fr>. OK jaredy@ and moritz@. | |||
2007-02-03 | Plug memory leak. | Ray Lai | |
OK otto@. | |||
2006-11-22 | Mark signal race. | Ray Lai | |
``OK!'' deraadt@. | |||
2006-11-02 | ftp(1) sends EPSV by default, not PASV; | Jason McIntyre | |
from daniel wade ok deraadt | |||
2006-11-02 | Pass full buffer size to fgets. | Ray Lai | |
OK moritz@ and jaredy@. | |||
2006-11-02 | Add checks for fgets and properly overwrite newline. | Ray Lai | |
Initial patch from Charles Longeau <chl at tuxfamily dot org>. OK moritz@ and jaredy@. | |||
2006-09-25 | You forgot about -DSMALL and broke all the install media | Theo de Raadt | |
2006-09-25 | Support some additional HTTP redirect codes. | Jonathan Gray | |
"looks good" pedro, fgsch, ok otto | |||
2006-07-07 | Remove extraneous code: | Ray Lai | |
- Instead of generating the same string twice using printf, generate once and reuse. - Use err instead of errx with strerror. OK otto@ | |||
2006-06-23 | free and sl_free already check against NULL, remove a few unneeded ifs. | Steven Mestdagh | |
ok otto | |||
2006-06-01 | Remove two unnecessary strlen() calls. Also, check if asprintf | Ray Lai | |
returns -1 instead of checking if connstr == NULL. OK beck@, moritz@ | |||
2006-05-25 | No matter how big the buffer size is, always limit to INT_MAX for | Ray Lai | |
SSL connections, due to SSL_read()'s prototype. This allows us to change ftp_read to return size_t and have it return (0) on error, just like fread(). OK otto@, beck@ | |||
2006-05-25 | Don't recalculate string length, just use return value from vasprintf. | Ray Lai | |
While here, remove pointless void pointer cast. OK otto@, beck@ | |||
2006-05-25 | Minor type correction. | Ray Lai | |
OK otto@ | |||
2006-05-25 | Better example URL spacing. | Ray Lai | |
OK jmc@ | |||
2006-05-19 | be more explicit about HTTPS; | Jason McIntyre | |
2006-05-19 | Remove ``sanity check'' that is already done in loop. | Ray Lai | |
OK beck@ | |||
2006-05-16 | Remove shadowing variables and properly use /* FALLTHROUGH */ | Ray Lai | |
comments. No binary change. Found by lint. OK beck@, deraadt@ | |||
2006-05-16 | https URL support; rototilled by a few people including me; originally | Theo de Raadt | |
from Rainer_Giedat@genua.de | |||
2006-04-25 | two strtol calls that were begging to be converted to strtonum | Ted Unangst | |
2006-04-03 | Ignore http_proxy for file urls; ok millert deraadt | Uwe Stuehler | |
2006-03-29 | fix fetching zero-length files via proxy. while there, also fix progress-meter | Alexander von Gernler | |
for files >2GB via proxy. help and discussion otto@, ok otto@ mickey@ | |||
2006-02-16 | delete a few double declarations; ok otto | Peter Valchev | |
2006-02-01 | save errno, from Ray Lai in PR 4999. | Otto Moerbeek | |
2006-01-10 | Prevent close() from clobbering errno. ok otto@ deraadt@ | Moritz Jodeit | |
From Ray Lai | |||
2005-11-13 | fseeko() and lseek() have different return values. cope with that ↵ | Theo de Raadt | |
correctly. spotted by dhill@mindcry.org | |||
2005-10-30 | restart_point is of type off_t, so use it with fseeko() and cast it | Nikolay Sturm | |
to long long for printing this way we can reget partially downloaded files of more than 2GB on i386 noticed by Thilo Hannemann <hannemann at physnet.uni-hamburg.de> ok djm@ | |||
2005-10-12 | Fix mget directory traversal vulnerability. From NetBSD. CAN-2002-1345. | Otto Moerbeek | |
ok millert@ deraadt@, prodding by david@ | |||
2005-09-21 | add ability to disable EPSV/EPRT from command-line. | Federico G. Schwindt | |
from Thorsten Glaser via Matt Van Mater < matt dot vanmater at gmail dot com > with some minor mods. deraadt@ jmc@ ok | |||
2005-08-05 | when i did the cleanup and switched to http 1.1, i forgot to add chunked | Federico G. Schwindt | |
support. while it's being tested switch to 1.0. noticed and tested by nick@. | |||
2005-07-18 | some cleanup and on non-proxy operation switch to HTTP 1.1 since we've | Federico G. Schwindt | |
using some sort of it for a long time now; shrinks ~200 bytes. ok by millert@ and sturm@. | |||
2005-07-11 | remove help if SMALL is defined. idea from NetBSD. should shrink a few | Federico G. Schwindt | |
bytes in the ramdisk. deraadt@ ok. | |||
2005-07-06 | oops, $macro was documented, just not where i expected it; reword and | Jason McIntyre | |
make it a bit easier to find; | |||
2005-07-06 | - now that `macdef' is nicely documented, tell people how to use it | Jason McIntyre | |
- replace `>' w/ groff char | |||
2005-07-06 | improve the description of `macdef'; | Jason McIntyre | |
from netbsd -r1.110: patch from david h. gutteridge, pr #24296; | |||
2005-04-21 | avoid infinite recursion on redirects; From NetBSD but limit set to 10. | Federico G. Schwindt | |
deraadt@ ok. | |||
2005-04-11 | knf; cloder ok | Theo de Raadt | |
2005-04-05 | a : in the path is not a port # indicator so don't take ones into | Henning Brauer | |
account after the first / behind the hostname, ok jaredy | |||
2005-01-07 | oops - 2 more .Dq -> .Sq; | Jason McIntyre | |
2005-01-07 | - distinguish between client (ftp) and protocol (FTP) | Jason McIntyre | |
- uppercase http - use .Sq for single characters, rather than .Dq - adjust a list | |||
2005-01-07 | `login'(n) -> `log in'(v); | Jason McIntyre | |
2005-01-03 | use an example of nmap `outpattern' containing spaces that works; | Jason McIntyre | |
2005-01-03 | a little cleanup in the nmap description; | Jason McIntyre | |
2005-01-03 | need to escape lines starting w/ `...'; | Jason McIntyre | |