summaryrefslogtreecommitdiff
path: root/bin
AgeCommit message (Collapse)Author
2003-11-30Ignore -o/-O in non-extract mode. Earlier version OK'd by henning@Todd C. Miller
2003-11-27permit trailing '$' in usernames, from Tom CosgroveNikolay Sturm
ok provos@, henning@
2003-11-24madvise mmapped memory (not used code)Michael Shalayeff
2003-11-23allow underscore in usernames, from Niels/NetBSDNikolay Sturm
ok henning@
2003-11-21kill comma splice; from Jared Yanovich;Jason McIntyre
also, put example description before the example, and indent example;
2003-11-21grammar improvements from Jared Yanovich;Jason McIntyre
2003-11-21encourage people to use -h rather than -L;Jason McIntyre
document -L as compatibility option; slight sync with NetBSD description; ok otto@ millert@
2003-11-20remove -Werror from userland builds, to give us a chance toAnil Madhavapeddy
use more verbose warning options if desired. ok millert@, henning@, david@
2003-11-20kill comma splice; from Jared Yanovich;Jason McIntyre
2003-11-20hyphenise compound adjective; from Jared Yanovich;Jason McIntyre
2003-11-10If "from fd" == "to fd" don't call dup2() or close "from fd".Todd C. Miller
2003-11-10For the >& and <& operators, add a check for "dup from" == "dup to" andTodd C. Miller
just return success if they are the same. Fixes the "ls 2>&2" problem miod@ found.
2003-11-08typos from Jonathon Gray;Jason McIntyre
2003-10-30double word from Tom Cosgrove;Jason McIntyre
2003-10-30Fix typo in comment; Bruno RoheeTodd C. Miller
2003-10-28standard section order;Jason McIntyre
2003-10-26typos from Jared Yanovich;Jason McIntyre
2003-10-22from NetBSD:Nikolay Sturm
initialise an integer field with 0 instead of NULL ok provos, itojun, avsm, fgsch
2003-10-22quote args to make them expand properly;Jason McIntyre
2003-10-22macros with too many args;Jason McIntyre
2003-10-22typos from Jared Yanovich;Jason McIntyre
ok deraadt@
2003-10-20memoryuse -> memory usage; from Jared YanovichJason McIntyre
ok deraadt@
2003-10-20typos from Jared Yanovich;Jason McIntyre
2003-10-18typos from Jared Yanovich;Jason McIntyre
2003-10-18typos in comments;Jason McIntyre
from Jared Yanovich
2003-10-17Xr dev_mkdb(8); from Tyler R. Retzlaff (NetBSD PR 23168);Jason McIntyre
ok deraadt@
2003-10-16Buffers 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-15errx -> err. From form.Mike Pechkin
millert@ ok
2003-10-10The special case code for "test -x" over NFS was incorrect. TheTodd 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-08originally from cb@openbsd.org, adapted by provosNikolay 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-26free(NULL) works; jjy2+@pitt.eduTheo de Raadt
2003-09-26free(NULL) is validTheo de Raadt
2003-09-25Fix a bug where one byte past the end of a buffer could be touchedTodd C. Miller
in certain cases; closes PR 3163
2003-09-25replace .Em with more appropriate macros. some other cleanup;Jason McIntyre
2003-09-24realloc fix; ho okTheo de Raadt
2003-09-24realloc fixes; ok ho matthieuTheo de Raadt
2003-09-24realloc fixes: unallocate for next use if realloc fixes; do not incr size;Theo de Raadt
do not p = realloc(p, ...; ok from ho, cloder
2003-09-19When sanity checking signal numbers, error out on signal >= NSIG,Todd C. Miller
not > NSIG. This makes cvs give a nice error message for "kill -NSIG 666" instead of EINVAL. From aaron@monkey.org.
2003-09-08fix pr3455 from Joerg.Sonnenberger. slightly improved fix suggested byTed Unangst
millert@. ok beck@ deraadt@ millert@
2003-09-04escapes in the wrong place;Jason McIntyre
2003-09-04 - use .Bk/.EkJason McIntyre
- kill bogus -offsets - escape `-' - .Ev for environment variables
2003-09-02escape punctuation;Jason McIntyre
ok deraadt@
2003-09-01In emacs editing mode, ksh by default interprets a set 8th bit asChristian Weisgerber
meta prefix, i.e. all characters with the top bit set (>= 0x80) are taken as commands and cannot be entered literally. Introduce a new shell option, emacs-usemeta, that allows to toggle this behavior. The default is the traditional behavior; to enter 8-bit characters use "set +o emacs-usemeta". ok fgsch@, henning@
2003-09-01fix perl path. not that anyone uses this, but..Federico G. Schwindt
2003-08-27rename force_push to something more sensible.Federico G. Schwindt
2003-08-27escape on expand under emacs mode; otto@ ok.Federico G. Schwindt
2003-08-27-l and -n options display owner, group and other permissions;Jason McIntyre
from Jonathan Gray via FreeBSD PR 54294;
2003-08-26fix backward and forward delete; from wiz@netbsd.org. many thanks.Federico G. Schwindt
2003-08-23teach systrace about "aout" emul; henning@ ok.Federico G. Schwindt
2003-08-23under emacs mode, fix the case when the globbed file and the longestFederico G. Schwindt
prefix lenghts are equal ("a .b" and "a ab" by instance). found and tested by otto@.