Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-06-18 | Remove remaining whiteout tentacles; OK deraadt@ miod@ weingart@ | Todd C. Miller | |
2005-06-18 | update to libevent 1.1a; keep local changes | Brad Smith | |
ok grunk@ | |||
2005-06-17 | - remove .Sh LIBRARY | Jason McIntyre | |
- add $OpenBSD$ tag - a couple minor tweaks | |||
2005-06-17 | no longer a need for the free(malloc(1)) hack, because the brk stuff | Theo de Raadt | |
no longer needs initializing (we use mmap for malloc entirely now) noticed by kjell, ok dhartmei, tested by me | |||
2005-06-17 | next citrus step. | Marc Espie | |
reviewed by millert, otto, kevlo, naddy, kettenis... libc+libstdc++ bump | |||
2005-06-17 | Extended Attributes was a piece to get to ACLs, however ACLs have not | Dale Rahn | |
been worked on, so EA is pointless to maintain. | |||
2005-06-17 | bye bye whiteouts | Todd C. Miller | |
2005-06-17 | remove netns stuff, ok millert | Henning Brauer | |
libc major bump by espie in a few | |||
2005-06-17 | remove undelete syscall | Todd C. Miller | |
2005-06-16 | bye bye whiteouts | Todd C. Miller | |
2005-06-15 | bye bye whiteouts | Todd C. Miller | |
2005-06-09 | remove references to ns(4); | Jason McIntyre | |
2005-06-08 | Fix rearranging of parameters for quad types. | Marc Espie | |
Use stateful functions for mbtowc. Use the same loop for scanning and for rescanning the format. okay millert@ | |||
2005-06-08 | Make gethostbyaddr() prototype match POSIX. This means len is now | Todd C. Miller | |
unsigned but there is no ABI change. OK deraadt@ | |||
2005-06-07 | RC4 is a trademark. Rest of text left intact. | Kjell Wooding | |
2005-06-07 | no need to insert spacing between list members; | Jason McIntyre | |
2005-06-07 | adding pointer protection to 'G' was too heavyweight. Since malloc guard | Ted Unangst | |
should be generally usable, split this out into option 'P'. ok deraadt | |||
2005-06-06 | Change email address for author, at his request. | Kjell Wooding | |
2005-06-06 | Change license to standard OpenBSD boilerplate, with permission | Kjell Wooding | |
from original author (David Mazieres) | |||
2005-06-05 | sort sections; | Jason McIntyre | |
2005-06-05 | s/-p1003.1-2003/-p1003.1-2004/g | Jason McIntyre | |
2005-06-04 | Fix description in a comment. | Joel Knight | |
2005-06-04 | use the new fat random sysctl to get initial state. (fallback to looping). | Ted Unangst | |
stir after eating 400000 words. ok + input deraadt | |||
2005-06-01 | Save errno from clobbering by clsoedir() in the err case. | Todd C. Miller | |
From Andrey Matveev; OK deraadt@ | |||
2005-06-01 | no more MNT_UNION, says pedro@ | Jason McIntyre | |
2005-05-28 | Use '\0' not 0 when storing as a char, part from Andrey Matveev. | Todd C. Miller | |
2005-05-28 | Move the va_start()/va_end() pair such that it directly backets the call | Todd C. Miller | |
to vfprintf() like the rest of the *printf functions. This is clearer and makes the error case in asprintf() simpler. From Andrey Matveev. | |||
2005-05-27 | mktemp(3) et al. go in stdlib.h, not unistd.h. While there be more | Todd C. Miller | |
explicit about mktemp(3) in the man page. | |||
2005-05-26 | sync setkey prototype with reality | Todd C. Miller | |
2005-05-26 | rdr, nat and binat can appear in pflog now, so make them valid arguments | Camiel Dobbelaar | |
for the "action" keyword ok dhartmei | |||
2005-05-26 | Merge common functionality of __strsignal and strerror_r. | Otto Moerbeek | |
ok jaredy@ miod@ | |||
2005-05-26 | union is gone, ok millert@ | Pedro Martelletto | |
2005-05-25 | avoid spurious ld evil string func warning, spotted by david@; | Damien Miller | |
feedback & ok avsm@ | |||
2005-05-25 | Minor wordink fix | Christopher Pascoe | |
ok dlg@ | |||
2005-05-24 | add a note describing latest guard feature | Ted Unangst | |
2005-05-24 | handle sizeof(void *) allocations specially when using malloc guard. | Ted Unangst | |
they get a whole page and go right at the end of it. ok deraadt tdeval | |||
2005-05-24 | Restoration of terminal settings can be broken by a well-timed signal, | Todd C. Miller | |
e.g. a terminating scp killing its ssh child so retry on EINTR. From peak@argo.troja.mff.cuni.cz via portable openssh bugzilla #905 | |||
2005-05-23 | no need to byteswap for AES_ASM, from tom@ | Markus Friedl | |
2005-05-22 | Make signal handler safe. From Michael Knudsen, many thanks. | Otto Moerbeek | |
2005-05-21 | Add some links to krb5_verify_user.3 | Bjorn Sandell | |
ok beck@ | |||
2005-05-19 | .Xr getitimer 2 , | Jason McIntyre | |
from jacob meuser; | |||
2005-05-16 | PT_WCOOKIE is available on sparc64 too. | Miod Vallat | |
2005-05-16 | Mention no more PT_[GS]ETFPREGS on m88k. | Miod Vallat | |
2005-05-15 | document getfsstat(2)'s behaviour when no flags are specified, okay jmc@ | Pedro Martelletto | |
2005-05-12 | credit .Bx 3 in HISTORY too; | Jason McIntyre | |
agreed w/ otto@ | |||
2005-05-12 | remove unsupported LIBRARY section; | Jason McIntyre | |
2005-05-11 | Update HISTORY fixing some facts, while it is not clear if the | Otto Moerbeek | |
environment stuff originates from AT&T or BSD. ok ok deraadt@ millert@ ian@ | |||
2005-05-11 | major abi changes: | Marc Espie | |
* introduce the mbstate_t typedef. impacts gnu libiconv, which has already been taken care of. * Prepare for mb stuff to really exist, replace macro MB_CUR_MAX with an external variable __mb_cur_max (impacts libX11 and various ports). * use mbstate in all the mb <-> wchar functions with state. * add a stub iswctype function allowing some ports to compile. bash and gdiff are missing wcscoll, and need to be told there's no i18n until this is fixed. Discussed and matthieu, otto, millert, kettenis, deraadt. Major libc bump | |||
2005-05-11 | let vfscanf be a real function. Use a weak_alias on systems where this | Marc Espie | |
is feasible. Okay millert@ There's a major libc bump coming that is going to cover this as well... | |||
2005-05-10 | import i386 AES asm code from openssl.org; ok and help with testing djm@ | Markus Friedl | |