summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2003-06-02Use 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-02remove junkTheo de Raadt
2003-06-01Correct string bounds; spotted by avsm@'s bounds checker.Miod Vallat
ok krw@ rohee@
2003-06-01- section reorderJason McIntyre
- macro cleanup
2003-06-01- section reorderJason McIntyre
- merge COMPATIBILITY - kill whitespace at EOL
2003-06-01- section reorderJason McIntyre
- merge COMPATIBILITY - kill whitespace at EOL - tidy up macros
2003-06-01- section reorderJason McIntyre
- merge COMPATIBILITY - kill whitespace at EOL
2003-06-01- section reorderJason McIntyre
- kill unnecessary .Ns macros - add some man page section numbers to .Xr's
2003-05-30- whitespace at EOLJason McIntyre
- remove unnecessary macros - section reorder in getrpcent(3)
2003-05-30section reorder;Jason McIntyre
2003-05-30- section reorderJason McIntyre
- macro cleanup
2003-05-30make a dynamic one to quiet the whinersTheo de Raadt
2003-05-30section reorder;Jason McIntyre
2003-05-30i sent you the damn working diff, didn't i?Michael Shalayeff
2003-05-30- section reorderJason McIntyre
- whitespace at EOL
2003-05-30Fix dependancy building for ELF startup code. Changed MakefilesDale Rahn
to build startup code the same on all (ELF) archs. hppa ok mickey@
2003-05-30- correct macro usageJason McIntyre
- section reorder
2003-05-30- clean up macro abuseJason McIntyre
- section reorder - merge COMPATIBILITY
2003-05-30section reorder;Jason McIntyre
2003-05-30- section reorder in crypt(3)Jason McIntyre
- use .An/.Aq for authors
2003-05-30- section reorderJason McIntyre
- in sigvec(3) removed .Xr to itself, added section numbers to two other .Xr's
2003-05-30remove whitespace at EOL;Jason McIntyre
2003-05-29tweak;Jason McIntyre
ok mickey@
2003-05-29layout problems; jmc okTheo de Raadt
2003-05-29mention that this has to be enabled via sysctl before useMichael Shalayeff
2003-05-27libpthread support for vax, at last.Miod Vallat
2003-05-27if 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-24typoTodd C. Miller
2003-05-24Say POSIX-2001 instead of Single Unix v3. They are the same but we generallyTodd C. Miller
mention POSIX compliance, not Single Unix compliance.
2003-05-23- typosJason McIntyre
- whitespace at EOL - new sentence, new line
2003-05-23- typosJason McIntyre
- new sentence, new line
2003-05-20this is all new code. copyright to downsj and myself who managed toTheo de Raadt
erradicate the old stuff.
2003-05-20Document ENXIO error condicion when the named file is a FIFO andTodd C. Miller
flags include O_NONBLOCK|O_WRONLY. Closes PR 3265.
2003-05-20- typosJason McIntyre
- new sentence, new line
2003-05-20consistent non-capitalization of words not beginning sentencesPaul Janzen
2003-05-19Make 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-19Explicitly state that priority values outside the range -20 to 20 areTodd C. Miller
truncated to the appropriate limit.
2003-05-19Add 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-19Missing licenceMiod Vallat
2003-05-18- typosJason McIntyre
- new sentence, new line - clean up .Xrs
2003-05-17Use unique variable names in Makefile.*.inc.Magnus Holmberg
2003-05-17Generated files. Removes dependency on asn1_compile, etc.Magnus Holmberg
2003-05-17Directory for pre-generated files.Magnus Holmberg
2003-05-17Added regen target to pregenerate files to get rid of dependency onMagnus Holmberg
up-to-date asn1_compile and compile_et. on hin@
2003-05-17Better English.Paul Janzen
2003-05-17Document behaviour when size = 1. ok millert@Paul Janzen
2003-05-17Support for 'make includes'; ok hin@, millert@Magnus Holmberg
2003-05-17Make the hardlinks the right way. Found by mho@Hans Insulander
2003-05-16When 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