Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-01-09 | use cc -E for the preprocessor instead of cpp. | Brad Smith | |
ok espie@ millert@ | |||
2004-01-08 | Convert to kinfo_proc2. The sort order for -u and -m will be different | Todd C. Miller | |
due to a bug fix in the sort routine. | |||
2004-01-08 | typo; from ray at cyth dot net (PR 3632); | Jason McIntyre | |
2004-01-07 | new command line option allows logging to stderr instead of syslog | Nikolay Sturm | |
"looks good" provos@, ok markus@ | |||
2004-01-05 | wording improvemements; | Jason McIntyre | |
started by Jared Yanovich and tempered by otto, tom, millert and myself; ok millert@ | |||
2004-01-05 | include path fixes for gcc3. | Marc Espie | |
tests otto@, okay millert@ | |||
2003-12-27 | this page documents `sh', not `ksh'; | Jason McIntyre | |
2003-12-27 | - revert a typo introduced when this page was mdoc'ed | Jason McIntyre | |
- use .Sq rather than .Dq for single letters | |||
2003-12-22 | document matching the empty string; | Jason McIntyre | |
started by vax at carolina dot rr dot com (NetBSD PR 23810), resolved by jdolecek@netbsd (rev. 1.24); ok millert@ | |||
2003-12-22 | note that `&&' and `||' are left-associative; | Jason McIntyre | |
from vax at carolina dot rr com (NetBSD PR 23814); agreed (in principal) millert@ deraadt@ | |||
2003-12-16 | use full sentence for description of cols; from Jared Yanovich; | Jason McIntyre | |
2003-12-16 | typo; mjc@bitz.ca | Theo de Raadt | |
2003-12-15 | Unbreak parameter assignment when calling bourne style functions; | Otto Moerbeek | |
resolves PR 2450. ok deraadt@ millert@ | |||
2003-12-13 | sort options, and adjust -width of options' list; | Jason McIntyre | |
2003-12-12 | typo; ok jmc@ | Christian Weisgerber | |
2003-12-08 | -h also overrides BLOCKSIZE; | Jason McIntyre | |
from perry@netbsd | |||
2003-12-08 | use POSIX description of -L, since it's much clearer; | Jason McIntyre | |
ok henning@ | |||
2003-12-03 | .Xr myname(5) in SEE ALSO; suggested by Michael W. Burden; | Jason McIntyre | |
2003-12-01 | Truncate the source string before copying during variable substitution | Todd C. Miller | |
so we copy the correct number of bytes. Fixes a bug introduced in revision 1.11. Closes PR 3591 | |||
2003-11-30 | Ignore -o/-O in non-extract mode. Earlier version OK'd by henning@ | Todd C. Miller | |
2003-11-27 | permit trailing '$' in usernames, from Tom Cosgrove | Nikolay Sturm | |
ok provos@, henning@ | |||
2003-11-24 | madvise mmapped memory (not used code) | Michael Shalayeff | |
2003-11-23 | allow underscore in usernames, from Niels/NetBSD | Nikolay Sturm | |
ok henning@ | |||
2003-11-21 | kill comma splice; from Jared Yanovich; | Jason McIntyre | |
also, put example description before the example, and indent example; | |||
2003-11-21 | grammar improvements from Jared Yanovich; | Jason McIntyre | |
2003-11-21 | encourage people to use -h rather than -L; | Jason McIntyre | |
document -L as compatibility option; slight sync with NetBSD description; ok otto@ millert@ | |||
2003-11-20 | remove -Werror from userland builds, to give us a chance to | Anil Madhavapeddy | |
use more verbose warning options if desired. ok millert@, henning@, david@ | |||
2003-11-20 | kill comma splice; from Jared Yanovich; | Jason McIntyre | |
2003-11-20 | hyphenise compound adjective; from Jared Yanovich; | Jason McIntyre | |
2003-11-10 | If "from fd" == "to fd" don't call dup2() or close "from fd". | Todd C. Miller | |
2003-11-10 | For the >& and <& operators, add a check for "dup from" == "dup to" and | Todd C. Miller | |
just return success if they are the same. Fixes the "ls 2>&2" problem miod@ found. | |||
2003-11-08 | typos from Jonathon Gray; | Jason McIntyre | |
2003-10-30 | double word from Tom Cosgrove; | Jason McIntyre | |
2003-10-30 | Fix typo in comment; Bruno Rohee | Todd C. Miller | |
2003-10-28 | standard section order; | Jason McIntyre | |
2003-10-26 | typos from Jared Yanovich; | Jason McIntyre | |
2003-10-22 | from NetBSD: | Nikolay Sturm | |
initialise an integer field with 0 instead of NULL ok provos, itojun, avsm, fgsch | |||
2003-10-22 | quote args to make them expand properly; | Jason McIntyre | |
2003-10-22 | macros with too many args; | Jason McIntyre | |
2003-10-22 | typos from Jared Yanovich; | Jason McIntyre | |
ok deraadt@ | |||
2003-10-20 | memoryuse -> memory usage; from Jared Yanovich | Jason McIntyre | |
ok deraadt@ | |||
2003-10-20 | typos from Jared Yanovich; | Jason McIntyre | |
2003-10-18 | typos from Jared Yanovich; | Jason McIntyre | |
2003-10-18 | typos in comments; | Jason McIntyre | |
from Jared Yanovich | |||
2003-10-17 | Xr dev_mkdb(8); from Tyler R. Retzlaff (NetBSD PR 23168); | Jason McIntyre | |
ok deraadt@ | |||
2003-10-16 | Buffers are not strings so use memcpy(), not strlcpy() to copy them. | Todd C. Miller | |
Found by danh@ with JG malloc options. I've also added some further bounds checks in the name of paranoia. Tested by danh and others. | |||
2003-10-15 | errx -> err. From form. | Mike Pechkin | |
millert@ ok | |||
2003-10-10 | The special case code for "test -x" over NFS was incorrect. The | Todd C. Miller | |
right thing to do is to try access(2) first (since that occurs on the NFS server side) and only check for the absence of an execute bit when access(2) succeeds. Closes PR 3465 | |||
2003-10-08 | originally from cb@openbsd.org, adapted by provos | Nikolay Sturm | |
itojun@ ok fix a race condition between path resolution in userland and the subsequent namei(): inform the kernel portion of valid filenames and then disallow symlink lookups for those filenames by means of a hook in namei(). with suggestions from provos@ also, add (currently unused) seqnr field to struct systrace_replace, from provos@ | |||
2003-09-26 | free(NULL) works; jjy2+@pitt.edu | Theo de Raadt | |