Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - Backout botched attempt to intoduce MANSECT feature. | ru | 2001-03-26 | 35 | -14/+41 |
| | | | | - MAN[1-9] -> MAN. | ||||
* | Do not build (and install) both secure/ and standard versions | ru | 2001-03-26 | 1 | -1/+3 |
| | | | | | | | of libtelnet, telnetd, and telnet. This only worked because secure/ was listed late in SUBDIR in Makefile.inc1. Reviewed by: markm | ||||
* | Don't use MANDEPEND and MANSRC. | ru | 2001-03-26 | 1 | -0/+1 |
| | |||||
* | change callrpc() from taking "char *" args, I'm quite sure they really meant | alfred | 2001-03-23 | 1 | -1/+0 |
| | | | | | | to use "void *". remove a duplicate prototype for callrpc() from libexec/ypxfr/ypxfr_extern.h | ||||
* | Set the default manual section for libexec/ to 8. | ru | 2001-03-20 | 30 | -35/+7 |
| | |||||
* | Teach ftpd about the new GLOB_MAXPATH flag. | jlemon | 2001-03-19 | 2 | -0/+11 |
| | |||||
* | When the file was transferred using sendfile(2), we forgot to keep track | des | 2001-03-11 | 1 | -0/+1 |
| | | | | | | of the transferred byte count. MFC candidate. PR: bin/25699 | ||||
* | First appeared in 4.3, not 5.0 | kris | 2001-03-04 | 1 | -1/+1 |
| | |||||
* | Change the read-only reply to "550 Permission denied.". | des | 2001-02-19 | 1 | -1/+1 |
| | |||||
* | Preceed/preceeding are not english words. Use precede or preceding. | asmodai | 2001-02-18 | 2 | -3/+3 |
| | |||||
* | mdoc(7) police: simplify construct. | ru | 2001-02-14 | 1 | -3/+1 |
| | |||||
* | Synch: Properly constify sccsid[]. | asmodai | 2001-02-07 | 1 | -2/+2 |
| | | | | Replace bcopy() with memmove(). | ||||
* | Synch: Prefer memmove() over bcopy(). | asmodai | 2001-02-07 | 1 | -1/+1 |
| | |||||
* | Synch: Properly constify sccsid[]. | asmodai | 2001-02-07 | 1 | -1/+1 |
| | |||||
* | Synch: prefer memmove() over bcopy(), since the first is a C-standard | asmodai | 2001-02-07 | 1 | -1/+1 |
| | | | | interface, whilst the latter is a BSD'ism. | ||||
* | Fix typo: compatability -> compatibility. | asmodai | 2001-02-06 | 1 | -1/+1 |
| | | | | Compatability is not an existing english word. | ||||
* | Fix typo: seperate -> separate. | asmodai | 2001-02-06 | 1 | -1/+1 |
| | | | | | | Seperate does not exist in the english language. Submitted to look at by: kris | ||||
* | Fix typo: wierd -> weird. | asmodai | 2001-02-06 | 1 | -1/+1 |
| | | | | There is no such thing as wierd in the english language. | ||||
* | Fix tftpd and tftp to support file transfers of over 65535 blocks | asmodai | 2001-02-02 | 2 | -2/+7 |
| | | | | | | | (about 31 MB - 32 MB). Submitted (partially) by: Pascal Hofstee <daeron@wit401305.student.utwente.nl> | ||||
* | Structure the options listing to be more standard. | nik | 2001-02-02 | 1 | -16/+21 |
| | | | | | | | | The PR also included documentation for other options, but upon inspection of the source these options aren't used. PR: docs/24149 Submitted by: Jesse Monroy, Jr. <opentrax@email.com> | ||||
* | mdoc(7) police: split punctuation characters + misc fixes. | ru | 2001-02-01 | 9 | -41/+33 |
| | |||||
* | Add static dependency to libisc to get isc_movefile(). | asmodai | 2001-01-29 | 1 | -0/+11 |
| | | | | Submitted by: Munehiro Matsuda <haro@kubota.co.jp> | ||||
* | Add -c/C which chroots by IP of tftp client, (i.e. /tftproot/127.0.0.1/). | billf | 2001-01-25 | 2 | -4/+50 |
| | |||||
* | Limit commands that can be issued when not logged in: | jedgar | 2001-01-20 | 1 | -70/+90 |
| | | | | | | TYPE, STRU, MODE, ALLO, STAT, ABOR, SITE IDLE, SYST, REST Reviewed by: kris, sheldon | ||||
* | Check malloc() and strdup() return values | jedgar | 2001-01-20 | 1 | -2/+6 |
| | | | | Reviewed by: kris | ||||
* | man(7) -> mdoc(7). | ru | 2001-01-16 | 2 | -97/+106 |
| | |||||
* | Prepare for mdoc(7)NG. | ru | 2001-01-16 | 6 | -6/+6 |
| | |||||
* | Move the process of storing entropy from /dev/random and reseeding with | dougb | 2001-01-14 | 1 | -10/+20 |
| | | | | | | | | | | | | | | | | it at boot time closer to the way we want it to be in the final version. * Move the default directory to /var/db/entropy * Run the entropy saving cron job every 11 minutes. This seems to be a better default, although still bikeshed material. * Feed /dev/random some cheesy "entropy" from various commands and files before the disks are mounted. This gives /dev/random a better chance of running without blocking early. * Move the reseeding with previously stored entropy to the point immediately after the disks are mounted. * Make the harvesting script a little safer in regards to the possibility of accidentally overwriting something other than a regular file. | ||||
* | Add a system to save entropy from /dev/random periodically so that | dougb | 2001-01-11 | 3 | -0/+93 |
| | | | | | | | | | | | | | | | | | | it can be used to reseed at boot time. This will greatly increase the chances that there will be sufficient entropy available at boot time to prevent long delays. For /etc/rc, remove the vmstat and iostat runs from the attempt to provide some cheesy randomness if the files fail, since those programs are dynamically linked, and ldd seems to want some randomness to do its magic. Guidance and parameters for this project were provided by Mark Murray, based on the requirements of the Yarrow algorithm. Some helpful suggestions for implementation (including the tip about iostat and vmstat) were provided by Sheldon Hearn. All blame for problems or mistakes is mine of course. | ||||
* | Fix a bug in which a program called dlclose from a destructor and | jdp | 2001-01-05 | 1 | -2/+43 |
| | | | | got an assert failure in the dynamic linker. | ||||
* | Prepare for mdoc(7)NG. | ru | 2000-12-27 | 1 | -1/+1 |
| | |||||
* | Prepare for mdoc(7)NG. | ru | 2000-12-20 | 6 | -57/+59 |
| | |||||
* | In send_data(), use sendfile() instead of the mmap() algorithm. | dan | 2000-12-20 | 1 | -20/+22 |
| | |||||
* | mdoc(7) police: removed hard sentence breaks, run through spell-checker. | ru | 2000-12-18 | 1 | -12/+15 |
| | |||||
* | Fix typo. | demon | 2000-12-17 | 1 | -1/+1 |
| | | | | | PR: 23591 Submitted by: mavetju@chello.nl | ||||
* | Add option -E to disable EPSV which throws certain stateful firewalls | phk | 2000-12-16 | 3 | -35/+89 |
| | | | | | | | | | into confusion. Add option -r to make ftpd support only read-only operations. Submitted by: Flemming (F3) Jacobsen <fj@batmule.dk> Reviewed by: phk | ||||
* | mdoc(7) police: removed history info from the .Os FreeBSD call. | ru | 2000-12-14 | 2 | -4/+4 |
| | |||||
* | Add support for advertising the service we support if the | julian | 2000-12-13 | 1 | -2/+19 |
| | | | | | | PADI packet contains a NULL service. This is apparently the desired behaviour in this case, though we only allow advertising one service. You could run multiple pppoeds to advertise multiple services. | ||||
* | mdoc(7) police: .Os CMU -> .Os, split authors for better output. | ru | 2000-12-12 | 2 | -2/+3 |
| | |||||
* | mdoc(7) police: use canonical form of .Dd macro. | ru | 2000-12-11 | 3 | -3/+3 |
| | |||||
* | (scrub_env): change to only accept a listed set of variables, | assar | 2000-12-10 | 1 | -23/+37 |
| | | | | including only non-filename contents for TERMCAP | ||||
* | Add `_PATH_DEVZERO'. | obrien | 2000-12-09 | 7 | -17/+27 |
| | | | | Use _PATH_* where where possible. | ||||
* | Whitespace-only to sync with -stable. | ru | 2000-12-07 | 1 | -2/+0 |
| | |||||
* | MFS: Silence compilation warnings. | ru | 2000-12-07 | 1 | -1/+1 |
| | |||||
* | Drop out of our main loop due to a signal rather than handling things in the | brian | 2000-12-04 | 1 | -24/+28 |
| | | | | | | | | | signal handler. Fix a spelling error. Subtley pointed out by: bde Make some stuff static | ||||
* | The GCC 2.96 snapshots have slightly different rules for finding include | obrien | 2000-12-01 | 1 | -0/+1 |
| | | | | | | | files. Mostly -I${.CURDIR} was needed -- especially for YACC generated files as the new cpp does not look in the ultimate source file (ie, the .y file)'s directory as told by the "#line" directive. Some were misspellings of "-I${.CURDIR}" as "-I.". | ||||
* | There is no src/contrib-crypto/ anything directory. So don't look for | obrien | 2000-12-01 | 1 | -2/+1 |
| | | | | include files in subdirs of it. | ||||
* | Remove unused #include. Use getopt(3). Add usage() with syslog(3) cap. | charnier | 2000-11-28 | 1 | -8/+22 |
| | |||||
* | Constify | kris | 2000-11-27 | 1 | -2/+2 |
| | |||||
* | Prevent leakage of information about anonymous user's homedir | danny | 2000-11-26 | 1 | -2/+6 |
| | | | | | | via 'QUOTE CWD'. Reviewed by: des |