Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2003-09-26 | free(NULL) is valid | Theo de Raadt | |
2003-09-25 | Fix a bug where one byte past the end of a buffer could be touched | Todd C. Miller | |
in certain cases; closes PR 3163 | |||
2003-09-25 | replace .Em with more appropriate macros. some other cleanup; | Jason McIntyre | |
2003-09-24 | realloc fix; ho ok | Theo de Raadt | |
2003-09-24 | realloc fixes; ok ho matthieu | Theo de Raadt | |
2003-09-24 | realloc 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-19 | When 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-08 | fix pr3455 from Joerg.Sonnenberger. slightly improved fix suggested by | Ted Unangst | |
millert@. ok beck@ deraadt@ millert@ | |||
2003-09-04 | escapes in the wrong place; | Jason McIntyre | |
2003-09-04 | - use .Bk/.Ek | Jason McIntyre | |
- kill bogus -offsets - escape `-' - .Ev for environment variables | |||
2003-09-02 | escape punctuation; | Jason McIntyre | |
ok deraadt@ | |||
2003-09-01 | In emacs editing mode, ksh by default interprets a set 8th bit as | Christian 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-01 | fix perl path. not that anyone uses this, but.. | Federico G. Schwindt | |
2003-08-27 | rename force_push to something more sensible. | Federico G. Schwindt | |
2003-08-27 | escape 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-26 | fix backward and forward delete; from wiz@netbsd.org. many thanks. | Federico G. Schwindt | |
2003-08-23 | teach systrace about "aout" emul; henning@ ok. | Federico G. Schwindt | |
2003-08-23 | under emacs mode, fix the case when the globbed file and the longest | Federico G. Schwindt | |
prefix lenghts are equal ("a .b" and "a ab" by instance). found and tested by otto@. |