summaryrefslogtreecommitdiffstats
path: root/contrib/tnftp
Commit message (Collapse)AuthorAgeFilesLines
* MFC r305085:dim2016-09-071-1/+1
| | | | | | | | | | | | | | | | | | | | | Fix warnings in tnftp about invalid constant conversions, e.g.: contrib/tnftp/src/ftp.c:2067:11: error: implicit conversion from 'int' to 'char' changes value from 255 to -1 [-Werror,-Wconstant-conversion] buf[0] = IAC; ~ ^~~ /usr/include/arpa/telnet.h:39:13: note: expanded from macro 'IAC' #define IAC 255 /* interpret as command: */ ^~~ contrib/tnftp/src/ftp.c:2068:11: error: implicit conversion from 'int' to 'char' changes value from 244 to -12 [-Werror,-Wconstant-conversion] buf[1] = IP; ~ ^~ /usr/include/arpa/telnet.h:50:12: note: expanded from macro 'IP' #define IP 244 /* interrupt process--permanently */ ^~~ Use an unsigned char buffer instead.
* [SA-14:25] Fix kernel stack disclosure in setlogin(2) / getlogin(2).des2014-11-041-14/+22
| | | | | | [SA-14:26] Fix remote command execution in ftp(1). Approved by: so (des)
* Update NetBSD Foundation copyrights to 2-clause BSDemaste2014-03-181-7/+0
| | | | | | | | | | | The NetBSD Foundation states "Third parties are encouraged to change the license on any files which have a 4-clause license contributed to the NetBSD Foundation to a 2-clause license." This change removes clauses 3 and 4 from copyright / license blocks that list The NetBSD Foundation as the only copyright holder. Sponsored by: The FreeBSD Foundation
* Move determination of socket buffer sizes from startup to the first time agavin2012-03-102-31/+27
| | | | | | | | | | | | | | socket is used. The previous code structure assumed that AF_INET sockets were always available, which is an invalid assumption on IPv6-only systems. This merges the fololowing revisions from NetBSD: src/usr.bin/ftp/main.c 1.120 src/usr.bin/ftp/util.c 1.156 PR: bin/162661 Tested by: bz Obtained from: NetBSD MFC after: 1 week
* Merge tnftp-20100108 from the vendor branch into head.gavin2011-06-2037-11316/+4900
| | | | | PR: bin/112288 bin/120256 bin/129014 bin/145528 MFC after: 1 month
* Copy lukemftp to its new home, tnftp. I'm doing this in stages so as togavin2011-06-1934-0/+24972
not confuse the CVS exporter.
OpenPOWER on IntegriCloud