| Commit message (Expand) | Author | Age | Files | Lines |
* | Correct the copyright messages: Make this a standard vanilla | kientzle | 2007-01-09 | 1 | -3/+2 |
* | If append_archive fails while writing an archive header, output the error | cperciva | 2007-01-05 | 1 | -1/+1 |
* | Clean up the struct archive used for reading an archive in the handling | cperciva | 2007-01-02 | 1 | -0/+1 |
* | Handle errors which occur during archive_write_data and archive_write_close | cperciva | 2007-01-02 | 1 | -5/+11 |
* | Remove two unused variables. | kientzle | 2006-07-31 | 1 | -6/+0 |
* | If you see a broken symlink, don't try to follow it, | kientzle | 2006-04-02 | 1 | -3/+6 |
* | Extended attribute support on write for Linux; FreeBSD hooks are | kientzle | 2006-03-21 | 1 | -12/+125 |
* | Edit pathnames for -x but not for -t. Otherwise, people get confused | kientzle | 2005-11-06 | 1 | -1/+1 |
* | In mode 'u', check for an error return from archive_read_open. | kientzle | 2005-11-01 | 1 | -2/+6 |
* | Fix -u with absolute paths (e.g., "tar -uf foo.tar /bar") by handling | kientzle | 2005-09-24 | 1 | -12/+12 |
* | Clarify some error messages. | kientzle | 2005-05-08 | 1 | -4/+4 |
* | bsdtar now uses the "tree" package instead of "fts" for walking | kientzle | 2005-04-24 | 1 | -175/+116 |
* | A number of fixes to the autoconf-generated build system. In | kientzle | 2005-04-17 | 1 | -3/+7 |
* | Support path-rewriting options (including --strip-components) for both | kientzle | 2005-04-17 | 1 | -27/+17 |
* | A handful of minor portability and style improvements. | kientzle | 2005-03-14 | 1 | -14/+13 |
* | Add --newer-ctime, --newer-mtime, --newer-ctime-than, and --newer-mtime-than | kientzle | 2005-03-13 | 1 | -20/+44 |
* | Correct error handling on failed writes | kientzle | 2004-11-05 | 1 | -4/+2 |
* | Make -C and -T work correctly together. | kientzle | 2004-08-28 | 1 | -4/+5 |
* | Better low-memory handling: If the link cache runs out of memory, just | kientzle | 2004-08-08 | 1 | -35/+36 |
* | Move the smart chdir logic into a couple of utility functions in util.c. | kientzle | 2004-08-08 | 1 | -78/+3 |
* | Add --totals option. Unlike gtar, this reports the bytes actually | kientzle | 2004-08-07 | 1 | -0/+16 |
* | Add "make distfile" capabilities to bsdtar, including informational | kientzle | 2004-08-07 | 1 | -0/+4 |
* | A bunch of style and security fixes (error checking return values, etc), | kientzle | 2004-07-25 | 1 | -22/+44 |
* | A bunch of stuff from Christoph Mellon: | kientzle | 2004-07-24 | 1 | -8/+15 |
* | Warn about stripping leading '/' when creating archives. | kientzle | 2004-06-27 | 1 | -1/+8 |
* | Augment the -T handling: | kientzle | 2004-06-27 | 1 | -39/+31 |
* | Fix "@-" which has apparently been broken for some time. <sigh> | kientzle | 2004-06-27 | 1 | -8/+28 |
* | Don't abort immediately on directory change errors. | kientzle | 2004-06-27 | 1 | -6/+16 |
* | Rename C=dir to -C dir, which is what people expect. | kientzle | 2004-06-26 | 1 | -11/+17 |
* | Set program exit value to 1 if there are any of various errors when | kientzle | 2004-06-07 | 1 | -0/+4 |
* | Ooops! Previous commit added an over-zealous error check. | kientzle | 2004-06-07 | 1 | -0/+2 |
* | If -b is specified, then force full padding for the last block. | kientzle | 2004-06-07 | 1 | -3/+25 |
* | Per style(9), don't use double spaces in expressions. | kientzle | 2004-06-07 | 1 | -2/+2 |
* | Fix a segfault when looking up a non-existent group. | kientzle | 2004-05-18 | 1 | -1/+1 |
* | Set errno to 0 before calling getpwuid/getgrgid, so that error | kientzle | 2004-05-17 | 1 | -0/+2 |
* | Propagate struct bsdtar down into a lot more places. | kientzle | 2004-05-17 | 1 | -44/+52 |
* | Refactor name caching to use a common piece of code for uname_cache and | kientzle | 2004-05-17 | 1 | -86/+111 |
* | Correct copy/paste error in Linux nodump support. | kientzle | 2004-05-03 | 1 | -3/+4 |
* | Style: Use single tab after #define | kientzle | 2004-05-02 | 1 | -3/+3 |
* | More of Juergen Lock's patches for Linux. | kientzle | 2004-05-02 | 1 | -5/+52 |
* | Update write.c to follow recent API changes to libarchive. | kientzle | 2004-04-26 | 1 | -8/+11 |
* | Fix username/groupname cache so it returns a name that | kientzle | 2004-04-23 | 1 | -0/+2 |
* | Eliminate a redundant call to archive_entry_set_pathname() | kientzle | 2004-04-21 | 1 | -8/+6 |
* | As suggested by Julian Elischer, use a self-sizing hash | kientzle | 2004-04-15 | 1 | -70/+238 |
* | A simple cache of uid->uname lookups and gid->gname lookups eliminates | kientzle | 2004-04-14 | 1 | -12/+35 |
* | When all the links to a file have been dumped, don't forget | kientzle | 2004-04-13 | 1 | -1/+3 |
* | Add DPADD to Makefile (thanks to Andrey for pointing this out). | kientzle | 2004-04-12 | 1 | -3/+0 |
* | Add support for -T option on create. | kientzle | 2004-04-08 | 1 | -2/+51 |
* | Correct signature in alternative stub implementation of setup_acls() | kientzle | 2004-04-07 | 1 | -1/+3 |
* | Archive both access and default ACLs. | kientzle | 2004-04-06 | 1 | -6/+19 |