summaryrefslogtreecommitdiffstats
path: root/usr.bin/sudo/zero_bytes.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove sudo, it is now in ports.millert2015-07-031-36/+0
|
* Revert some $OpenBSD$ additions about which there are doubts.krw2015-01-201-1/+0
| | | | Suggested by deraadt@
* Missing $OpenBSD$'s.krw2015-01-201-0/+1
| | | | ok deraadt@
* Remove old $Sudo$ tags; the main sudo tree no longer lives in cvs.millert2010-03-041-4/+0
|
* Upgrade to sudo 1.7. See the WHATSNEW files for details.millert2008-11-141-3/+3
|
* Update to sudo 1.6.9p1. Note that the environment handling in sudomillert2007-07-261-3/+4
| | | | | | | | 1.6.9 has changed relative to older versions. Sudo now starts commands with a minimal environment containing the variables in the env_keep and env_check lists. This behavior is configurable in the sudoers file. Please see the "SECURITY NOTES" section in the sudo manual.
* Update to sudo 1.6.8p1millert2004-09-281-29/+11
|
* Get rid of volatile variables that were a vain attempt to prevent themillert2004-01-051-0/+57
compiler from optimizing away memset() calls. Instead, add a new function, zero_bytes(), to clear buffers with sensitive contents. Taken from the sudo cvs repo, man.