summaryrefslogtreecommitdiffstats
path: root/usr.bin/ftp
Commit message (Collapse)AuthorAgeFilesLines
* Add META_MODE support.sjg2015-06-131-0/+21
|\ | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp
| * dirdeps.mk now sets DEP_RELDIRsjg2015-06-081-2/+0
| |
| * Merge sync of headsjg2015-05-271-2/+1
| |\ | |/ |/|
| * Updated/new dependenciessjg2014-11-191-1/+0
| |
| * Merge from head@274682sjg2014-11-191-2/+2
| |\
| * \ Merge head from 7/28sjg2014-08-192-3/+2
| |\ \
| * | | Updated dependenciessjg2014-05-161-1/+0
| | | |
| * | | Updated dependenciessjg2014-05-101-0/+2
| | | |
| * | | Merge from headsjg2014-05-081-1/+1
| |\ \ \
| * | | | Updated dependenciessjg2013-03-111-0/+1
| | | | |
| * | | | Updated dependenciessjg2013-02-161-2/+0
| | | | |
| * | | | Updated/new Makefile.dependsjg2012-11-081-1/+0
| | | | |
| * | | | Sync FreeBSD's bmake branch with Juniper's internal bmake branch.marcel2012-08-221-0/+25
| | | | | | | | | | | | | | | | | | | | Requested by: Simon Gerraty <sjg@juniper.net>
* | | | | Convert to usr.bin/ to LIBADDbapt2014-11-251-2/+1
| |_|_|/ |/| | | | | | | | | | | Reduce overlinking
* | | | ftp(1) uses nothing from libutil, do not link to itbapt2014-11-051-2/+2
| |_|/ |/| |
* | | Replace all uses of libncurses and libtermcap with their wide characterbrooks2014-07-171-2/+2
| |/ |/| | | | | | | | | | | | | | | | | variants. This allows usable file system images (i.e. those with both a shell and an editor) to be created with only one copy of the curses library. Exp-run: antoine PR: 189842 Discussed with: bapt Sponsored by: DARPA, AFRL
* | Use src.opts.mk in preference to bsd.own.mk except where we need stuffimp2014-05-061-1/+1
|/ | | | from the latter.
* Merge tnftp-20100108 from the vendor branch into head.gavin2011-06-203-290/+519
| | | | | PR: bin/112288 bin/120256 bin/129014 bin/145528 MFC after: 1 month
* Build usr.bin/ with WARNS=6 by default.ed2010-01-021-0/+2
| | | | Also add some missing $FreeBSD$ to keep svn happy.
* Obey MK_INET6_SUPPORT.yar2006-07-271-1/+7
|
* Fixed style of DPADD and LDADD assignments as per style.Makefile(5).ru2004-02-051-2/+2
|
* Restore INET6 option from config.h.mikeh2003-06-251-1/+1
| | | | Submitted by: David Malone <dwmalone@maths.tcd.ie>
* Update for latest lukemftp import.mikeh2003-06-161-2/+2
|
* Update for lukemftp-1.6-beta2.mikeh2002-06-151-1/+16
|
* Connect lukemftp to the build as the default ftp client. Lukemftpmikeh2001-12-1314-9453/+6
| | | | | supports most of the previous features of FreeBSD ftp, but has been better maintained and includes new features.
* Make completion work with filenames containing spaces.iedowse2001-11-181-2/+7
| | | | | | PR: bin/23526 Submitted by: root@yoda.fwe.pi.musin.de MFC after: 1 week
* Adjust to the libedit enhancements some functions now take more parameters.obrien2001-10-013-3/+5
| | | | Partially submitted by: kris
* strtol -> strtoll (for off_t file size)ache2001-09-011-1/+1
|
* File positions are off_t nowdays, not long, so:ache2001-09-011-5/+5
| | | | | | | | | | long -> off_t fseek -> fseeko NOTE: that fseek not works for >long offsets files per POSIX: [EOVERFLOW] For fseek( ), the resulting file offset would be a value which cannot be represented correctly in an object of type long.
* Revert the previous delta and apply a better fix which correctsmike2001-08-301-9/+5
| | | | | | a check on the final snprintf and reduces duplicated code. Submitted by: brian
* Remove whitespace at end of line I happened to find during my last edit.alex2001-08-301-2/+2
|
* Add support for proper URI encoding, using strvisx(3)'s VIS_HTTPSTYLE.alex2001-08-301-3/+10
| | | | | Requests through a proxy are still broken for URIs that contain blanks, since this required a bigger rewrite of the whole function.
* Add support for HTTP/1.1 name-based virtual hosts. Also, usemike2001-08-301-7/+12
| | | | | | | | | | asprintf(3) when creating the request string, as the length of a path is defined as unlimited by the standard and limiting the total request to 4K is awfully arbitrary. PR: 30054 Submitted by: Joseph Mallett <jmallett@xMach.org> MFC after: 8 days
* o Fix some checks on snprintf(3) to prevent miscalculations.mike2001-08-291-4/+8
| | | | | | o This fixes a memory leak that can occur on some URL's. Pointy hat to: brian
* Fix my previous snprintf() patches (which were largely no-ops).brian2001-08-232-9/+11
| | | | Mostly submitted by: bde
* Display a better error message when snprintf() returns < 0brian2001-08-211-1/+5
| | | | Pointed out by: bde
* Handle overflows from snprintf(), not just returns of < 0brian2001-08-211-5/+5
| | | | Pointed out by: bde
* Handle snprintf() returning -1.brian2001-08-202-13/+27
| | | | MFC after: 2 weeks
* Removed duplicate VCS ID tags, as per style(9).ru2001-08-138-8/+0
|
* mdoc(7) police: protect trailing full stops of abbreviationsru2001-08-101-2/+2
| | | | with a trailing zero-width space: `e.g.\&'.
* Fix using /usr/bin/ftp as a slave process on the end of a pipe by callingjon2001-08-052-3/+3
| | | | | | | fflush(stdout). This is one ancient PR... PR: bin/1589 Submitted by: imp
* Portability configuation for LukeM's ftp client.obrien2001-07-191-0/+270
|
* Remove whitespace at EOL.dd2001-07-151-8/+8
|
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-101-1/+1
|
* Correct small typo on debug message.dcs2001-06-221-1/+1
| | | | | | PR: bin/28337 Submitted by: Koga Youichirou <y-koga@jp.freebsd.org> MFC after: 1 week
* Fixed a null pointer bug in rev.1.10. Rev.1.10 was supposed to tobde2001-04-041-5/+7
| | | | | | | | | | | | move the "for safety" zeroing of unused members of timebuf to a better place. It actually moved the zeroing to a worse place and didn't add necessary braces. Fixed a nearby older bug. timebuf.tm_gmtoff was sometimes used even when timebuf was invalid. Even when it is zeroed, a failing mktime() might set it to nonzero. PR: 25243
* Prepare for mdoc(7)NG.ru2000-12-191-1/+1
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-7/+7
|
* Don't depend on <sys/stat.h> bogusly including <sys/time.h> (and therebywollman2000-10-101-0/+1
| | | | <time.h>).
* Do not call freeaddrinfo(res0) twice.ru2000-09-251-0/+1
| | | | PR: bin/21476
OpenPOWER on IntegriCloud