Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | When system calls indicate an error they return -1, not some arbitrary | 2019-06-28 | 1 | -4/+4 | |
| | | | | | | value < 0. errno is only updated in this case. Change all (most?) callers of syscalls to follow this better, and let's see if this strictness helps us in the future. | ||||
* | Use the backchannel for all error messages instead of syslog(3). | 2015-11-26 | 1 | -16/+15 | |
| | | | | OK deraadt@ beck@ | ||||
* | tzfile.h is an internal header that should never have been installed. | 2015-03-15 | 1 | -4/+5 | |
| | | | | | | | | | What's worse, the tzfile.h that gets installed is over 20 years old and doesn't match the real tzfile.h in libc/time. This makes the tree safe for /usr/include/tzfile.h removal. The TM_YEAR_BASE define has been moved to time.h temporarily until its usage is replaced by 1900 in the tree. Actual removal of tzfile.h is pending a ports build. Based on a diff from deraadt@ | ||||
* | Delete secret or secret-derived data with explicit_bzero. | 2014-08-25 | 1 | -2/+2 | |
| | | | | | concept ok deraadt@ diff looks ok tedu@ | ||||
* | use O_CLOEXEC with open() instead of open/fcntl; from David Hill | 2013-04-29 | 1 | -3/+3 | |
| | | | | ok otto | ||||
* | Adapt to new pw_copy() API, closes PR 3698. | 2004-04-20 | 1 | -11/+6 | |
| | |||||
* | fix use-after-free for expired passwds; ok deraadt, tdeval | 2003-09-02 | 1 | -7/+9 | |
| | |||||
* | some -Wall and spaces cleanup, scsi.c left. | 2002-06-09 | 1 | -2/+2 | |
| | | | | some brave soul should look at it. | ||||
* | login_close() should avoid memory leak. | 2002-02-19 | 1 | -1/+2 | |
| | | | | millert@ ok | ||||
* | Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically. | 2002-02-16 | 1 | -2/+2 | |
| | |||||
* | 2nd arg to pw_mkdb() | 2001-08-16 | 1 | -2/+2 | |
| | |||||
* | consistently use #include "util.h" not <util.h> since util.h lives in this dir. | 2001-08-16 | 1 | -3/+3 | |
| | |||||
* | login_check_expire(3), a helper function for use with BSD authentication. | 2000-11-26 | 1 | -0/+191 | |
This lives in libutil because it uses pw_lock(3) and friends. Needs a man page (soon!). |