Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-01-24 | document 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-23 | Use correct cvs id string. | Hans-Joerg Hoexer | |
ok deraadt@ | |||
2004-01-23 | remove junk return at end | Theo de Raadt | |
2004-01-23 | enable acss. | Hans-Joerg Hoexer | |
ok @deraadt @markus Also bump minor version. ok @deraadt | |||
2004-01-23 | evp api and manual page for acss | Hans-Joerg Hoexer | |
ok deraadt@ markus@ | |||
2004-01-23 | Add acss to libcrypto. | Hans-Joerg Hoexer | |
ok deraadt@ markus@ | |||
2004-01-23 | Use closefrom(); ok millert tedu | Theo de Raadt | |
2004-01-21 | Replace some strncpy() calls with strlcpy() | Jean-Francois Brousseau | |
tested by jose@, ok canacar@ and otto@ | |||
2004-01-20 | Call _exit() not exit() from abort() if we are unable to kill ourselves | Todd 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-20 | Stop parsing the buffer after an appropriate number of digits; from NetBSD | Todd C. Miller | |
OK otto@ and miod@ | |||
2004-01-20 | Fix the example code. The loop invariant 'i' was not bound by MAXTOKENS | Todd 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-19 | Fix -Wsign-compare warnings pointed out by kevlo@, ok marc@ | Todd C. Miller | |
2004-01-19 | emulation names are not changeable | Ted Unangst | |
2004-01-18 | don't include bsd.own.mk, it's included at the top of bsd.lib.mk | Marco S Hyman | |
2004-01-17 | pretty | Theo de Raadt | |
2004-01-16 | Include correct includes to unbreak compilation on macppc. ok miod@ | Otto Moerbeek | |
2004-01-16 | fix .Xr and SEE ALSO; | Jason McIntyre | |
use parentheses; | |||
2004-01-16 | add some commas; | Jason McIntyre | |
2004-01-15 | man pages for thread_yield and pthread_stackseg_np | Marco S Hyman | |
jmc asked for them, now he can make them look pretty | |||
2004-01-15 | threaded version of closefrom | Marco 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-15 | ABI 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-15 | group 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-14 | Fix printf format string. ok markus@ | Otto Moerbeek | |
2004-01-14 | .Xr closefrom | Ted Unangst | |
2004-01-14 | update struct, noted by deraadt@ | Ted Unangst | |
2004-01-12 | full date in .Dd; | Jason McIntyre | |
2004-01-12 | typo from jmc@ | Ted Unangst | |
2004-01-12 | new syscall closefrom(2). ok deraadt millert | Ted Unangst | |
2004-01-12 | document WAIT_ANY and WAIT_MYPGRP; | Jason McIntyre | |
help and ok miod@ | |||
2004-01-12 | some comments on ffs sysctls, mainly dirhash | Ted Unangst | |
2004-01-11 | __sglue should be extern; from art@ | Todd C. Miller | |
2004-01-10 | auth_clean does not clear the options settings | Todd C. Miller | |
2004-01-10 | Don'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-09 | Initialize procbase2 to 0 in _kvm_open(); Dan Harnett | Todd C. Miller | |
2004-01-08 | Add missing include of poll.h to example code; Andre Nathan | Todd C. Miller | |
2004-01-08 | __init/__fini handling on ELF has not been correct. It is supposed to | Dale 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-08 | in the description of ip.sourceroute, point people to securelevel(7), as | Jason McIntyre | |
for other sysctls affected by securelevel; | |||
2004-01-08 | alphabetic order; | Jason McIntyre | |
sort spacing; | |||
2004-01-08 | Add MLINKs for kvm_getproc2() and friends. | Todd C. Miller | |
2004-01-08 | use va_copy() with gcc 3 and up. | Brad Smith | |
ok millert@ espie@ | |||
2004-01-08 | add dirhash sysctls | Ted Unangst | |
2004-01-07 | document syn cache sysctl; ok deraadt, jmc, itojun | Markus Friedl | |
2004-01-07 | Sync PTRTOINT64 w/ kernel version and remove some unused vars. | Todd C. Miller | |
2004-01-07 | Implement kvm_getproc2(), kvm_getargv2() and kvm_getenvv2() that use | Todd C. Miller | |
the KERN_PROC2 sysctl. Based on changes from NetBSD but uses our own kvm_arg_sysctl(). | |||
2004-01-07 | Implement KERN_PROC2 sysctl from NetBSD. This will allow us to | Todd C. Miller | |
have ps and friends be independent of changes in struct proc et al in the kernel. OK deraadt@ | |||
2004-01-07 | amout -> 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-05 | support NOTE_EOF; from marius aamodt eriksen; ok tedu, millert | Markus Friedl | |
2004-01-05 | Do not have non-dynamic crt0 depend upon libc's strrchr() function on a.out. | Miod Vallat | |