Age | Commit message (Collapse) | Author | |
---|---|---|---|
1998-07-27 | pull in string.h for memset() proto | Todd C. Miller | |
1998-07-20 | Spelling, and omitted words for getNAME. | Marc Espie | |
1998-07-03 | use 10 X in mkstemp string for improved speed at race winning | Theo de Raadt | |
1998-06-09 | spelling | Theo de Raadt | |
1998-06-03 | zero sigset_t before use | Theo de Raadt | |
1998-03-31 | only preserve uid/gid if -p. This is unlike traditional tar but more like gtar | Todd C. Miller | |
1998-03-03 | Correct -x and -p flags to be more like traditional tar and make | Todd C. Miller | |
the man page reflect reality. The -p flag only preserves the file mode (irrespective of umask) if possible. The -x flag tries to set user/group, mtime, and mode. | |||
1998-01-22 | Preserve uid/gid if invoked as tar and extracting as root. | Todd C. Miller | |
This is traditional tar behavior. | |||
1997-09-21 | $OpenBSD$ | Theo de Raadt | |
1997-09-16 | Do not error out on archives without the | Niklas Hallqvist | |
customary block of zeroes at the end. | |||
1997-09-01 | i am bored enough to fix terminal space/tab uglies | Theo de Raadt | |
1997-08-17 | Don't include both strings.h and string.h -- just use string.h | Todd C. Miller | |
1997-07-25 | #if __STDC__ --> #ifdef __STDC__ | Michael Shalayeff | |
1997-07-24 | Stash fd of cwd instead of using getcwd() to stash path. | Todd C. Miller | |
This works in cases where the parent dir is not readable. | |||
1997-07-23 | tabify | kstailey | |
1997-06-18 | (foo *)0 -> NULL | kstailey | |
1997-06-18 | (foo *)NULL -> NULL | kstailey | |
1997-06-06 | geteuid(2) can never fail. What was I thinking? | Todd C. Miller | |
1997-06-06 | POSIX says pax must complain about not being able to set permissions | Todd C. Miller | |
but we don't have to do that in non-pax modes. | |||
1997-06-04 | Don't complain about not being able to set uid/gid in "tar -p" | Todd C. Miller | |
(EPERM) unless the verbose flag is given or the user is root. Noted by Magnus Holmberg <mho@stacken.kth.se>. | |||
1997-06-04 | Fix usage of l_strncpy() (noticed by Theo) and make l_strncpy() | Todd C. Miller | |
pad with NULL's like strncpy(3). This eliminates the need for zf_strncpy(); ocurrences of zf_strncpy() have been changed to l_strncpy(). | |||
1997-06-03 | less strncpy; charnier@freebsd | Theo de Raadt | |
1997-05-29 | Fix -o option and add -O. | Todd C. Miller | |
1997-04-16 | Change rmt -> rst and use _PATH_DEFTAPE as default file if none is | Todd C. Miller | |
specified. | |||
1997-04-12 | We need to copy the pathnames we get from fgetln() on stdin, as the buffer | Thorsten Lockert | |
will be reused. | |||
1997-04-10 | another 8MB of swap and it works | kstailey | |
1997-04-09 | Fix typos. Pointed out by Carsten Hammer <chammer@post.uni-bielefeld.de> | Todd C. Miller | |
1997-04-09 | sun3 pax/tar segfaults | kstailey | |
1997-04-09 | the the | Theo de Raadt | |
1997-04-06 | Remove old -P flag since it doesn't do anything and make -P mean | Todd C. Miller | |
"preserve leading /" like GNU tar (no longer use -S for this). | |||
1997-04-06 | Allow creation of archives with block sizes up to 64512 bytes | Todd C. Miller | |
but complain about non-portability if > 32256 bytes. Brought up by George Robbins <grr@shandakor.tharsis.com> | |||
1997-04-05 | Fix bug introduced with "exit(0) if no files" behavior change. | Todd C. Miller | |
1997-04-05 | Strip leading '/' of pathnames (only in tar mode). -S option turns | Todd C. Miller | |
this off like GNU tar. | |||
1997-04-04 | Improvements based on commets by George Robbins <grr@shandakor.tharsis.com> | Todd C. Miller | |
- ``tar cf'' will now just exit instead of waiting for a file list on stdin. The old behavior should be re-enabled with an option. - Better wording in tar man page for -o and -w | |||
1997-04-02 | opt_add() needs to make a copy of the input string since it modifies | Todd C. Miller | |
it and new compilers don't let you write to constant strings. Problem (core dump when using -o) noted by Felix Schroeter. | |||
1997-04-02 | Deal with old-style tar archives with a directory specifier (extension). | Todd C. Miller | |
1997-03-30 | Adjust the input string by the right amount if the pattern wasn't at the | Todd C. Miller | |
beginning. From NetBSD (mycroft). | |||
1997-03-26 | Note that default blocking factor is 20. | Todd C. Miller | |
1997-03-26 | Blocking factor in tar is in 512byte blocks. Makes -b act like | Todd C. Miller | |
``real'' tars. | |||
1997-03-25 | Back out my previous kludge to make tar files with short trailers work in | Todd C. Miller | |
favor of a simpler change--never try to do a media change when invoked as tar. This fixes problems that crop up if gzip exits unhappily and others. | |||
1997-03-11 | Use pax(1) for cpio(1) emulation | Thorsten Lockert | |
1997-03-05 | Add missing #include | Thorsten Lockert | |
1997-03-04 | Do not post-process directories in cpio mode | Thorsten Lockert | |
1997-03-02 | Say how many blocks were read/written in cpio mode | Thorsten Lockert | |
1997-03-02 | More complete cpio(1) emulation | Thorsten Lockert | |
1997-02-27 | fix pr system/124, reported by Janjaap van Velthooven (janjaap@stack.nl). | michaels | |
1997-02-20 | cpio emulation for pax | Thorsten Lockert | |
1997-02-16 | Don't give summary line at end when using tar format | Thorsten Lockert | |
1997-02-16 | Correct handling of long filenames that has been stored with a prefix in | Thorsten Lockert | |
the archive; generate POSIXly correct padding of octal fields. | |||
1997-02-10 | Permit single block trailers differently. | Todd C. Miller | |