Age | Commit message (Expand) | Author |
2020-10-05 | -f - can respresent both stdin and stdout; rework the text a little | Jason McIntyre |
2020-03-23 | in case we can't create intermediate directories because of permissions, | Marc Espie |
2020-01-16 | Usually, -width Fl (which is 10n) is too wide and hence ugly. | Ingo Schwarze |
2019-11-15 | In cpio mode, when processing the -o switch, only set the archive format | Christian Weisgerber |
2019-06-28 | When system calls indicate an error they return -1, not some arbitrary | Theo de Raadt |
2019-06-28 | mkstemp() returns -1 on failure | Theo de Raadt |
2019-06-24 | uid_from_user() and gid_from_user() return -1 when indicating error, | Theo de Raadt |
2018-09-13 | Use the new libc uid_from_user() and gid_from_group() instead of | Todd C. Miller |
2018-07-23 | Point to glob in section 7 for the actual list of special characters instead | kn |
2017-12-08 | Convert snprintf+write into dprintf. It is simply easier to read, and | Theo de Raadt |
2017-10-09 | Better document what the -v flag actually does and that you can | Todd C. Miller |
2017-09-16 | Carefully add casts to silence clang sign-compare warnings. ok millert@ | Otto Moerbeek |
2017-09-12 | there is no offical way to get the max value of time_t, but this one works | Otto Moerbeek |
2017-09-10 | Backslash escapes the next character in filename patterns. | Philip Guenther |
2017-09-08 | Avoid clang warning and make code better by using a signed long; | Otto Moerbeek |
2017-09-06 | intvar < sizeof(...) does not catch negative values since an int -> unsigned | Otto Moerbeek |
2017-03-16 | buffer increase factor belongs in the nmemb field of reallocarray() | Theo de Raadt |
2017-03-11 | switch pax to using pledge tape instead of ioctl. | Theo Buehler |
2017-01-23 | Slow down the churn and continue using old pledge name "ioctl" instead | Theo de Raadt |
2017-01-23 | Split pledge "ioctl" into "tape" and "bpf", and allow SIOCGIFGROUP only | Theo de Raadt |
2017-01-21 | Nuke whitespace foolish enough to expose itself during the great | Kenneth R Westerback |
2016-12-26 | Put some variable declarations under appropriate #if/#endif protection | Kenneth R Westerback |
2016-12-20 | Fix a bug where archives smaller than 512 bytes would trigger a next volume | Mark Kettenis |
2016-08-26 | Need <time.h> for time() and others. Pulled in by coincidence previously | Philip Guenther |
2016-08-26 | -E NONE has *never* worked; it was always -E none. It's a dubious option | Philip Guenther |
2016-08-26 | options.h is only used by options.c; merge it into the .c file | Philip Guenther |
2016-08-26 | reduce and sort #includes | Philip Guenther |
2016-08-26 | tables.h is only used by tables.c; merge it into the .c file | Philip Guenther |
2016-08-26 | <sys/time.h>, <errno.h>, and <stdlib.h> are unnecessary; sort #includes | Philip Guenther |
2016-08-26 | sel_subs.h is only used by sel_subs.c; merge it into the .c file | Philip Guenther |
2016-08-26 | pat_rep.h is only used by pat_rep.c; merge it into the .c file | Philip Guenther |
2016-08-26 | ftree.h is only used by ftree.c; merge it into the .c file | Philip Guenther |
2016-08-26 | Don't need <sys/time.h> or "options.h" here | Philip Guenther |
2016-08-26 | cache.h is only used by cache.c; merge it into the .c file | Philip Guenther |
2016-08-25 | Replace name_{uid,gid}() with the libc routines user_from_uid() and | Philip Guenther |
2016-08-24 | Make list-like output go to stderr when appending to an archive on stdout. | Philip Guenther |
2016-08-24 | Treat cpio's -t option as a modifier to -i, so they're ordering independent | Philip Guenther |
2016-08-23 | Instead of doing strcmp(argv0), track the invocation mode (pax/tar/cpio) | Philip Guenther |
2016-08-23 | Only try to set the times on a directory once, at the end, to avoid | Philip Guenther |
2016-08-16 | Add HISTORY. | Ingo Schwarze |
2016-08-14 | Remove many unnecessary casts. Verified by comparing generated code on | Philip Guenther |
2016-08-14 | Replace u_quad_t with unsigned long long and replace "uqd" with "ull" in | Philip Guenther |
2016-06-23 | allow creation of devices or fifo without -p (as it is already allowed with -p) | Sebastien Marie |
2016-06-03 | new style overlords say to use continue in empty loops. | Ted Unangst |
2016-04-19 | Switch from fgetln() to getline() to simplify error handling. | Philip Guenther |
2016-02-16 | Ignore trailing slashes and skip over duplicate slashes in chk_path() to | Philip Guenther |
2016-02-15 | To archive a 101 character absolute path in ustar format we must | Philip Guenther |
2016-01-01 | don't declar main. from Michal Mazurek | Ted Unangst |
2015-12-24 | More adress -> address | mmcc |
2015-12-16 | Replace "tame" by "pledge" in a comment. | tb |