summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2004-01-24document EPERM; from Pedro Martelletto;Jason McIntyre
ok millert@
2004-01-23`Ns' implies `No', so `Ns No' -> `Ns'; (even simpler in adduser(8))Jason McIntyre
discussed with todd@
2004-01-23Use correct cvs id string.Hans-Joerg Hoexer
ok deraadt@
2004-01-23remove junk return at endTheo de Raadt
2004-01-23enable acss.Hans-Joerg Hoexer
ok @deraadt @markus Also bump minor version. ok @deraadt
2004-01-23evp api and manual page for acssHans-Joerg Hoexer
ok deraadt@ markus@
2004-01-23Add acss to libcrypto.Hans-Joerg Hoexer
ok deraadt@ markus@
2004-01-23Use closefrom(); ok millert teduTheo de Raadt
2004-01-21Replace some strncpy() calls with strlcpy()Jean-Francois Brousseau
tested by jose@, ok canacar@ and otto@
2004-01-20Call _exit() not exit() from abort() if we are unable to kill ourselvesTodd C. Miller
to avoid flushing stdio twice. This code path should never really happen though. Also make the function declaration ANSI. OK deraadt@
2004-01-20Stop parsing the buffer after an appropriate number of digits; from NetBSDTodd C. Miller
OK otto@ and miod@
2004-01-20Fix the example code. The loop invariant 'i' was not bound by MAXTOKENSTodd C. Miller
which could result in writing a NUL byte outside of tokens[]. A fix, from Patrick Latifi, is to move the increment into the "i < MAXTOKENS - 1" block.
2004-01-19Fix -Wsign-compare warnings pointed out by kevlo@, ok marc@Todd C. Miller
2004-01-19emulation names are not changeableTed Unangst
2004-01-18don't include bsd.own.mk, it's included at the top of bsd.lib.mkMarco S Hyman
2004-01-17prettyTheo de Raadt
2004-01-16Include correct includes to unbreak compilation on macppc. ok miod@Otto Moerbeek
2004-01-16fix .Xr and SEE ALSO;Jason McIntyre
use parentheses;
2004-01-16add some commas;Jason McIntyre
2004-01-15man pages for thread_yield and pthread_stackseg_npMarco S Hyman
jmc asked for them, now he can make them look pretty
2004-01-15threaded version of closefromMarco S Hyman
pthread_stackseg_np added. Minor bump for these changes occurred a day or so ago and will not be bumped again
2004-01-15ABI breakage happened with the sigaltstack replacement. It is too late,Theo de Raadt
now we just have to cope. Since setjmp uses it, the alpha and sparc64 are unhappy with the structure change. In a few days, we will make the second hop here, for now, use the old system call until all binaries have the new struct in them.
2004-01-15group and list thread functions;Jason McIntyre
also add missing pages to SEE ALSO; prodded by tedu@, based on freebsd's page, and helped by marc@; ok marc@ tedu@
2004-01-14Fix printf format string. ok markus@Otto Moerbeek
2004-01-14.Xr closefromTed Unangst
2004-01-14update struct, noted by deraadt@Ted Unangst
2004-01-12full date in .Dd;Jason McIntyre
2004-01-12typo from jmc@Ted Unangst
2004-01-12new syscall closefrom(2). ok deraadt millertTed Unangst
2004-01-12document WAIT_ANY and WAIT_MYPGRP;Jason McIntyre
help and ok miod@
2004-01-12some comments on ffs sysctls, mainly dirhashTed Unangst
2004-01-11__sglue should be extern; from art@Todd C. Miller
2004-01-10auth_clean does not clear the options settingsTodd C. Miller
2004-01-10Don't clean options in auth_clean() which was introduced in rev 1.8.Todd C. Miller
login(1) depends on auth_clean() leaving options alone so this was API breakage. Verified to not make ftpd leak memory by mpech@.
2004-01-09Initialize procbase2 to 0 in _kvm_open(); Dan HarnettTodd C. Miller
2004-01-08Add missing include of poll.h to example code; Andre NathanTodd C. Miller
2004-01-08__init/__fini handling on ELF has not been correct. It is supposed toDale Rahn
be a section which code stubs (branches) can be added to initialize/destructor This adds MD stubs to allow this to operate as expected. should fix wine and behave according to ELF specs. ok miod@
2004-01-08in the description of ip.sourceroute, point people to securelevel(7), asJason McIntyre
for other sysctls affected by securelevel;
2004-01-08alphabetic order;Jason McIntyre
sort spacing;
2004-01-08Add MLINKs for kvm_getproc2() and friends.Todd C. Miller
2004-01-08use va_copy() with gcc 3 and up.Brad Smith
ok millert@ espie@
2004-01-08add dirhash sysctlsTed Unangst
2004-01-07document syn cache sysctl; ok deraadt, jmc, itojunMarkus Friedl
2004-01-07Sync PTRTOINT64 w/ kernel version and remove some unused vars.Todd C. Miller
2004-01-07Implement kvm_getproc2(), kvm_getargv2() and kvm_getenvv2() that useTodd C. Miller
the KERN_PROC2 sysctl. Based on changes from NetBSD but uses our own kvm_arg_sysctl().
2004-01-07Implement KERN_PROC2 sysctl from NetBSD. This will allow us toTodd C. Miller
have ps and friends be independent of changes in struct proc et al in the kernel. OK deraadt@
2004-01-07amout -> amount; from tom@.Federico G. Schwindt
2004-01-06- Rename index to longindex and explain its use.Federico G. Schwindt
- Talk about zeroing the last element of the longopts array. - Remove '?' from the switch and some KNF to the code. - Change 0's to NULL where appropriate. jmc@ ok.
2004-01-05support NOTE_EOF; from marius aamodt eriksen; ok tedu, millertMarkus Friedl
2004-01-05Do not have non-dynamic crt0 depend upon libc's strrchr() function on a.out.Miod Vallat