Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-06-02 | Use the getopt() in getopt_long.c which supports some GNU extensions. | Todd C. Miller | |
getopt.c is no longer compiled and will eventually be removed. | |||
2003-06-02 | remove junk | Theo de Raadt | |
2003-06-01 | Correct string bounds; spotted by avsm@'s bounds checker. | Miod Vallat | |
ok krw@ rohee@ | |||
2003-06-01 | - section reorder | Jason McIntyre | |
- macro cleanup | |||
2003-06-01 | - section reorder | Jason McIntyre | |
- merge COMPATIBILITY - kill whitespace at EOL | |||
2003-06-01 | - section reorder | Jason McIntyre | |
- merge COMPATIBILITY - kill whitespace at EOL - tidy up macros | |||
2003-06-01 | - section reorder | Jason McIntyre | |
- merge COMPATIBILITY - kill whitespace at EOL | |||
2003-06-01 | - section reorder | Jason McIntyre | |
- kill unnecessary .Ns macros - add some man page section numbers to .Xr's | |||
2003-05-30 | - whitespace at EOL | Jason McIntyre | |
- remove unnecessary macros - section reorder in getrpcent(3) | |||
2003-05-30 | section reorder; | Jason McIntyre | |
2003-05-30 | - section reorder | Jason McIntyre | |
- macro cleanup | |||
2003-05-30 | make a dynamic one to quiet the whiners | Theo de Raadt | |
2003-05-30 | section reorder; | Jason McIntyre | |
2003-05-30 | i sent you the damn working diff, didn't i? | Michael Shalayeff | |
2003-05-30 | - section reorder | Jason McIntyre | |
- whitespace at EOL | |||
2003-05-30 | Fix dependancy building for ELF startup code. Changed Makefiles | Dale Rahn | |
to build startup code the same on all (ELF) archs. hppa ok mickey@ | |||
2003-05-30 | - correct macro usage | Jason McIntyre | |
- section reorder | |||
2003-05-30 | - clean up macro abuse | Jason McIntyre | |
- section reorder - merge COMPATIBILITY | |||
2003-05-30 | section reorder; | Jason McIntyre | |
2003-05-30 | - section reorder in crypt(3) | Jason McIntyre | |
- use .An/.Aq for authors | |||
2003-05-30 | - section reorder | Jason McIntyre | |
- in sigvec(3) removed .Xr to itself, added section numbers to two other .Xr's | |||
2003-05-30 | remove whitespace at EOL; | Jason McIntyre | |
2003-05-29 | tweak; | Jason McIntyre | |
ok mickey@ | |||
2003-05-29 | layout problems; jmc ok | Theo de Raadt | |
2003-05-29 | mention that this has to be enabled via sysctl before use | Michael Shalayeff | |
2003-05-27 | libpthread support for vax, at last. | Miod Vallat | |
2003-05-27 | if reverse lookup result looks like a numeric hostname, | Jun-ichiro itojun Hagino | |
someone is trying to trick us by PTR record like following: 1.1.1.10.in-addr.arpa. IN PTR 2.3.4.5 so protect against this kind of attacks. deraadt ok | |||
2003-05-24 | - typos; | Jason McIntyre | |
- new sentence, new line; - whitespace at EOL | |||
2003-05-24 | typo | Todd C. Miller | |
2003-05-24 | Say POSIX-2001 instead of Single Unix v3. They are the same but we generally | Todd C. Miller | |
mention POSIX compliance, not Single Unix compliance. | |||
2003-05-23 | - typos | Jason McIntyre | |
- whitespace at EOL - new sentence, new line | |||
2003-05-23 | - typos | Jason McIntyre | |
- new sentence, new line | |||
2003-05-20 | this is all new code. copyright to downsj and myself who managed to | Theo de Raadt | |
erradicate the old stuff. | |||
2003-05-20 | Document ENXIO error condicion when the named file is a FIFO and | Todd C. Miller | |
flags include O_NONBLOCK|O_WRONLY. Closes PR 3265. | |||
2003-05-20 | - typos | Jason McIntyre | |
- new sentence, new line | |||
2003-05-20 | consistent non-capitalization of words not beginning sentences | Paul Janzen | |
2003-05-19 | Make sure our return value is withing the range 20 - -20 (aka NZERO - -NZERO). | Todd C. Miller | |
We could use an extra call to getpriority() instead but it's faster to just do the bounds check in userland. | |||
2003-05-19 | Explicitly state that priority values outside the range -20 to 20 are | Todd C. Miller | |
truncated to the appropriate limit. | |||
2003-05-19 | Add the generated files as a dependency for the 'all' target. | Todd C. Miller | |
Should prevent bogus bug reports that come in every so often... | |||
2003-05-19 | Missing licence | Miod Vallat | |
2003-05-18 | - typos | Jason McIntyre | |
- new sentence, new line - clean up .Xrs | |||
2003-05-17 | Use unique variable names in Makefile.*.inc. | Magnus Holmberg | |
2003-05-17 | Generated files. Removes dependency on asn1_compile, etc. | Magnus Holmberg | |
2003-05-17 | Directory for pre-generated files. | Magnus Holmberg | |
2003-05-17 | Added regen target to pregenerate files to get rid of dependency on | Magnus Holmberg | |
up-to-date asn1_compile and compile_et. on hin@ | |||
2003-05-17 | Better English. | Paul Janzen | |
2003-05-17 | Document behaviour when size = 1. ok millert@ | Paul Janzen | |
2003-05-17 | Support for 'make includes'; ok hin@, millert@ | Magnus Holmberg | |
2003-05-17 | Make the hardlinks the right way. Found by mho@ | Hans Insulander | |
2003-05-16 | When positional arguments need more memory for storage (more than 8 args), | Theo de Raadt | |
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 |