Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-03 | sort SEE ALSO; | Jason McIntyre | |
2014-01-03 | some more information, based on a diff by sven falempin | Ted Unangst | |
2014-01-02 | Call fuse callbacks on FBT_INIT and FBT_DESTROY. | Sylvestre Gallon | |
Issue reported by Helg Bredow, thanks! With inputs from tedu@ ok tedu@ | |||
2013-12-31 | Remove #ifdef _REENTRANT code that isn't used here. These days, the code | Mark Kettenis | |
handling per-thread errno lives in librthread. ok miod@, espie@ | |||
2013-12-31 | don't try writing past the end unless we have to | Ted Unangst | |
ok gilles millert | |||
2013-12-28 | Do not need __guard[] anymore since we are now relying on __guard_local | Theo de Raadt | |
for a while already ok miod kettenis | |||
2013-12-28 | Move atexit(3) into crtbegin.c and certbeginS.c such that we can pass the | Mark Kettenis | |
right __dso_handle and have dlopen'ed shared objects run their atexit handlers when they get unloaded. This is what Linux does, and several ports depend on this behaviour (and will crash upon exit without this chang). Based on an earlier diff from matthew@ Tested by ajacoutot@ ok deraadt@ | |||
2013-12-27 | do not need to create the stack cookie using a constructor anymore, | Theo de Raadt | |
since the kernel supplies a .openbsd.randomdata segment. ok matthew miod guenther | |||
2013-12-27 | remove non-openbsd.randomdata parts | Theo de Raadt | |
ok miod matthew | |||
2013-12-26 | constify data parameter in imsg_add() and imsg_compose() | Eric Faurot | |
ok deraadt@ | |||
2013-12-24 | yup, we do ELF | Theo de Raadt | |
2013-12-23 | Add assembly code to set up the arguments for the common C startup code. This | Mark Kettenis | |
means we no longer rely on how the C compiler sets up the initial stack frame and allows us to get rid of MD_NO_CLEANUP. ok deraadt@, guenther@ | |||
2013-12-23 | Sync Makefile with what other platforms do; makes dependency tracking actually | Mark Kettenis | |
work. ok deraadt@, guenther@ | |||
2013-12-23 | - clarify that sio_close() stops the device first, then | Alexandre Ratchov | |
frees the handle and not the opposite - clarify that sio_close() and sio_stop() dont discard samples in the play buffer. suggested by Reimar Doeffinger <Reimar.Doeffinger at gmx.de> ok jmc@ | |||
2013-12-23 | Install a bunch more of OpenSSL manpages. ok deraadt@ | Jeremie Courreges-Anglas | |
2013-12-22 | remove unneeded check for null context. ok deraadt gilles millert | Ted Unangst | |
2013-12-22 | tweak comment | Ted Unangst | |
2013-12-22 | - replaces "audio stream" by "audio device", as sndio is a device | Alexandre Ratchov | |
abstraction - remove useless statements. ok jmc@ | |||
2013-12-20 | Add support for truncate in fuse. | Sylvestre Gallon | |
Input from millert@. Ok millert@, tedu@. | |||
2013-12-20 | Fix typo, allow hppa64 to build a little further | Tobias Ulmer | |
2013-12-20 | Be less verbose when SNDIO_DEBUG=1 is set. | Alexandre Ratchov | |
2013-12-19 | Reliability fix for SHA384 SSL/TLS ciphers on strict alignment | Jeremie Courreges-Anglas | |
architectures. ok miod@ djm@ Upstream patch: commit cdd1acd788020d2c525331da1712ada778f1373c Author: Andy Polyakov <appro@openssl.org> Date: Wed Dec 18 21:27:35 2013 +0100 | |||
2013-12-19 | fix double word error; | Jason McIntyre | |
2013-12-19 | Split out strncpy and strncat from strcpy and strcat manuals. | Todd C. Miller | |
Requested by deraadt@ | |||
2008-09-06 | import of OpenSSL 0.9.8h | Damien Miller | |
2013-12-19 | pseudo-code corrections from Solar Designer <solar@openwall.com> | Theo de Raadt | |
2013-12-18 | Provide a random stackgrap on pthread frames. Use _STACKALIGNBYTES to | Theo de Raadt | |
ensure the frames are aligned correctly. Discussed at length with guenther and kettenis ok kettenis, this is the right first step | |||
2013-12-17 | The termios.h bits were missing from the initial commit. | Todd C. Miller | |
2013-12-17 | fix build; from deraadt@ | Christian Weisgerber | |
2013-12-17 | crank libc for +tcgetsid -inet_nsap_addr -inet_nsap_ntoa -f_prealloc | Theo de Raadt | |
ok millert | |||
2013-12-17 | inet_nsap_ntoa() and inet_nsap_addr() go away. Unused APIs from darker | Theo de Raadt | |
days. | |||
2013-12-17 | f_prealloc() goes away. Comment from the original source file: | Theo de Raadt | |
* XXX. Force immediate allocation of internal memory. Not used by stdio, * but documented historically for certain applications. Bad applications. | |||
2013-12-17 | Add tcgetsid() now that it is in POSIX base. Man page adapted from | Todd C. Miller | |
NetBSD (thorpej). OK kettenis@ | |||
2013-12-17 | define FUSE_{MAJOR,MINOR}_VERSION which many fuse helpers assume is defined. | Jasper Lievisse Adriaanse | |
ok syl@ | |||
2013-12-13 | Remove struct ttysize which was introduced for compatibility with | Christian Weisgerber | |
SunOS < 3.2 (1986). ok millert@, guenther@ | |||
2013-12-12 | POSIX no longer requires sys/types.h be included to get the pid_t | Todd C. Miller | |
definition, and neither do our headers. OK espie@ guenther@ | |||
2013-12-12 | Fix static linking of libpthread: have crt0 invoke __init_tcb() if it's | Philip Guenther | |
defined and we don't think ld.so has already done the TCB setup. ok and much discussion miod@ | |||
2013-12-11 | revert to return EPERM for sem_init pshared until it really works | Ted Unangst | |
reported by zhuk | |||
2013-12-10 | Disable the USE_OLD_TTY hack that re-encoded termios Bnnn speeds | Christian Weisgerber | |
as sgtty Bnnn speeds. This means ospeed has to grow from short to int to hold all possible values. Bump major version. While there, also fix a bug in _nc_baudrate(). ok nicm@, millert@, deraadt@ | |||
2013-12-10 | Remove an attempt to free a non-heap object. | Sylvestre Gallon | |
from David Hill thanks. ok stsp@. | |||
2013-12-09 | Fix issues with dirent returning junk due to removal of bzero in version 1.14. | Bob Beck | |
Ensure d_name string is nul terminated and the correct length in d_namlen. noticed by pelikan@ ok syl@ guenther@ | |||
2013-12-08 | Reduce the random name length when sem_init is called with pshared | Federico G. Schwindt | |
following what is recommended for mkstemp. This reduces the number of calls to sched_yield considerably. tedu@ ok. | |||
2013-12-05 | no more regexp(3), so point to regex(3); | Jason McIntyre | |
as advised by deraadt | |||
2013-12-05 | no more stty(3), so point to tty(4); | Jason McIntyre | |
as advised by deraadt | |||
2013-12-04 | express final disapproval of the interfaces in libcompat, such as | Theo de Raadt | |
them ftime(), gtty(), stty(), re_comp(), cuserid() and others. Discussion and ongoing work to fix the ports tree from many, especially naddy. ok naddy [There is a bit more cleanup possible after that, but this is considered the current safe step] | |||
2013-12-04 | tweak from deraadt; | Jason McIntyre | |
2013-12-04 | update BUGS to reflect previous; as advised by | Jason McIntyre | |
guenther and deraadt | |||
2013-12-04 | correct frame handling | Theo de Raadt | |
with and ok guenther | |||
2013-12-03 | Remove string.h dependency from sys/select.h; from FreeBSD, tweaked | Christian Weisgerber | |
by deraadt@. Sync man page. ok guenther@, deraadt@ | |||
2013-12-03 | Does not append a NUL character to buf in readlink(2). | Sylvestre Gallon | |
Add some check for malloc(3) return values. From Derrik Pates (daemon AT now DOT ai), thanks. OK millert@ |