Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | - section reorder | 2003-05-30 | 4 | -16/+15 | ||
| | | | | | - in sigvec(3) removed .Xr to itself, added section numbers to two other .Xr's | |||||
* | layout problems; jmc ok | 2003-05-29 | 1 | -2/+3 | ||
| | ||||||
* | typo | 2003-05-24 | 1 | -1/+1 | ||
| | ||||||
* | Say POSIX-2001 instead of Single Unix v3. They are the same but we generally | 2003-05-24 | 1 | -1/+1 | ||
| | | | | mention POSIX compliance, not Single Unix compliance. | |||||
* | this is all new code. copyright to downsj and myself who managed to | 2003-05-20 | 1 | -34/+22 | ||
| | | | | erradicate the old stuff. | |||||
* | Document ENXIO error condicion when the named file is a FIFO and | 2003-05-20 | 1 | -1/+7 | ||
| | | | | flags include O_NONBLOCK|O_WRONLY. Closes PR 3265. | |||||
* | consistent non-capitalization of words not beginning sentences | 2003-05-20 | 2 | -6/+6 | ||
| | ||||||
* | Make sure our return value is withing the range 20 - -20 (aka NZERO - -NZERO). | 2003-05-19 | 1 | -4/+5 | ||
| | | | | | We could use an extra call to getpriority() instead but it's faster to just do the bounds check in userland. | |||||
* | Explicitly state that priority values outside the range -20 to 20 are | 2003-05-19 | 2 | -4/+6 | ||
| | | | | truncated to the appropriate limit. | |||||
* | Better English. | 2003-05-17 | 1 | -3/+3 | ||
| | ||||||
* | Document behaviour when size = 1. ok millert@ | 2003-05-17 | 2 | -2/+16 | ||
| | ||||||
* | When positional arguments need more memory for storage (more than 8 args), | 2003-05-16 | 1 | -16/+30 | ||
| | | | | | | | use mmap() instead of malloc(). this makes all the functionality in snprintf() and friends signal race safe. it also makes syslog_r() and the entire family of *warn*() and *err*() signal race safe, which was the real goal. ok pjazen millert | |||||
* | typo from deraadt@ | 2003-05-16 | 1 | -4/+4 | ||
| | ||||||
* | Unbreak 64-bit archs... | 2003-05-14 | 1 | -2/+2 | ||
| | ||||||
* | Pointer cleaning. ok ian@, tedu@, krw@ | 2003-05-14 | 1 | -66/+67 | ||
| | ||||||
* | fill ai_canonname field for numeric hostname, by the given hostname. | 2003-05-14 | 1 | -8/+26 | ||
| | | | | folows new recommendation in RFC3493. markus ok | |||||
* | sync vis() behaviour when VIS_SAFE to man page: don't do anything if isgraph() | 2003-05-14 | 1 | -3/+4 | ||
| | | | | is true, even if the character isn't 7-bit. | |||||
* | Delete reference to /usr/share/doc/papers/malloc.ascii.gz as we do not | 2003-05-14 | 1 | -2/+1 | ||
| | | | | | | have it. We don't even have the directory /usr/share/doc/papers. ok millert@. | |||||
* | cpu -> CPU | 2003-05-12 | 4 | -10/+10 | ||
| | ||||||
* | Ideas from NetBSD: document nmemb and include sradixsort in the NAME section. | 2003-05-12 | 1 | -5/+8 | ||
| | | | | Also, stomp a comma splice. | |||||
* | Document \s | 2003-05-11 | 1 | -1/+2 | ||
| | ||||||
* | Do not let userland access the swapon system call anymore (nothing uses it | 2003-05-10 | 1 | -2/+2 | ||
| | | | | | anyway). ok deraadt@ weingart@ | |||||
* | costant -> constant; | 2003-05-10 | 1 | -2/+2 | ||
| | | | | from NetBSD (Onno van der Linden). | |||||
* | typos; | 2003-05-10 | 11 | -31/+32 | ||
| | ||||||
* | typos; | 2003-05-10 | 3 | -6/+6 | ||
| | ||||||
* | Pass ndigit+1 as size arg to strlcpy() since ndigit doesn't include the NUL | 2003-05-09 | 1 | -3/+3 | ||
| | ||||||
* | assembler versions of insque and remque for m68k, also from 4.4BSD | 2003-05-09 | 3 | -1/+117 | ||
| | ||||||
* | insque and remque are VAX instructions, no need for C functions; From 4.4BSD | 2003-05-09 | 3 | -2/+106 | ||
| | ||||||
* | Include string.h for memset() proto; noticed by lebel@ | 2003-05-09 | 4 | -4/+8 | ||
| | ||||||
* | Oops, forgot to add remque.c here | 2003-05-09 | 1 | -1/+1 | ||
| | ||||||
* | Major number crank due to setr[ug]id() moving into libcompat. | 2003-05-08 | 1 | -2/+2 | ||
| | ||||||
* | Add sha2 routines based on code by Aaron D. Gifford with minor | 2003-05-08 | 4 | -6/+1309 | ||
| | | | | | | massaging and a man page by me. I used the phk-derived stuff for sha2hl.c instead of Aaron's for consistency with our other hash routines. | |||||
* | Clear the digest local var w/ memset() in the End function. | 2003-05-08 | 3 | -18/+21 | ||
| | ||||||
* | Move setrgid(3) and setruid(3) from libc -> libcompat. | 2003-05-08 | 4 | -182/+3 | ||
| | | | | Programs should not be using these... | |||||
* | move insque(3) and remque(3) from libcompat -> libc; they are now POSIX | 2003-05-08 | 4 | -8/+209 | ||
| | ||||||
* | move lsearch(3) and insque(3) from libcompat -> libc; they are now POSIX | 2003-05-08 | 3 | -7/+205 | ||
| | ||||||
* | typos; | 2003-05-07 | 11 | -49/+59 | ||
| | ||||||
* | updated URL from Leandro Costa; | 2003-05-06 | 1 | -2/+3 | ||
| | | | | ok millert@ | |||||
* | Add support for command line args in rshprog, e.g. "ssh -C". | 2003-05-05 | 2 | -11/+53 | ||
| | ||||||
* | typo in STANDARDS (this man page is getnameinfo, not getaddrinfo); | 2003-05-03 | 1 | -2/+2 | ||
| | | | | from wiz@netbsd | |||||
* | typos; | 2003-05-03 | 4 | -11/+11 | ||
| | ||||||
* | typos; | 2003-05-03 | 5 | -22/+24 | ||
| | | | | ok millert@ | |||||
* | these files all had >9 arguments to .Nd, causing the name description to be | 2003-05-03 | 1 | -3/+2 | ||
| | | | | | | truncated. i wrapped them in double quotes to preserve the line. grep inspired by an -mdoc lesson from millert@ | |||||
* | Add Doug Gwyn's portable alloca() for platforms w/o an assembler | 2003-05-02 | 8 | -8/+147 | ||
| | | | | | | | version. Normally, gcc provides its own alloca() (unless -fno-builtin is specified). The C version is decidedly suboptimal--we really need proper assembler versions but this will work as a stop-gap measure. | |||||
* | -Wall cleanup, make rcsid variables const | 2003-05-01 | 31 | -61/+61 | ||
| | | | | millert@ ok | |||||
* | add missing enumeration case to select to kill gcc warning | 2003-05-01 | 2 | -2/+8 | ||
| | | | | millert@ ok | |||||
* | typos; | 2003-05-01 | 6 | -16/+15 | ||
| | ||||||
* | typos; | 2003-05-01 | 2 | -19/+19 | ||
| | | | | ok itojun@ | |||||
* | typos; | 2003-05-01 | 1 | -4/+4 | ||
| | | | | ok jakob@ | |||||
* | a extended -> an extended; | 2003-04-30 | 1 | -2/+2 | ||
| |