summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/tar
Commit message (Collapse)AuthorAgeFilesLines
* Fixed "make clean".ru2004-03-031-0/+1
|
* Remove getopt*.c, we already have compatible getopt_long() in libcache2004-02-171-1/+1
|
* Style fixes: Use curly braces in Makefiles,kientzle2004-02-131-1/+1
| | | | | | use cat (not cp) to copy files. Submitted by: ru
* GNU tar in the base system is now called "gtar"kientzle2004-02-111-1/+11
| | | | | | | | | | | | "tar" is now just a link to "gtar". This lays the groundwork for an orderly migration from GNU tar to some other tar. (First, we introduce the new tar program, then we migrate the 'tar' name, then we remove gtar, with intervals of months between these steps.) Approved by: gordon
* /rescue/tar exists, so build this dynamic now.obrien2003-11-171-2/+0
|
* There is no need to #include <sgtty.h>peter2003-09-041-1/+1
|
* Uniformly refer to a file system as "file system".ru2002-12-121-1/+1
| | | | Approved by: re
* We HAVE_STPCPY now.obrien2002-10-201-1/+1
|
* choosen -> chosendd2002-10-011-1/+1
| | | | | PR: 42962 Submitted by: Scott D Friedemann <sdf@expertune.com>
* can not -> cannot.ru2002-08-131-1/+1
|
* SUBDIR is initially empty.ru2002-06-051-1/+1
|
* Canonicalize.ru2002-06-051-4/+1
|
* Collapse lib and tar dirs into single top-level directory.sobomax2002-06-044-33/+23
| | | | Suggested by: obrien
* Don't forget to include ../Makefile.inc.sobomax2002-06-041-0/+8
|
* Add bmake bits for building GNU tar from src/contrib/tar.sobomax2002-06-046-16/+614
|
* Send our ancienv GNU tar into Attic.sobomax2002-06-0431-16129/+0
| | | | Suggested by: ps
* Bandaid for LP64 machines where 'warning: cast to pointer from differentpeter2002-04-072-0/+6
| | | | | | sized integer' bites. The various malloc functions return pointers, but without any prototype/declarations visible to callers, the compiler expects them to return int.
* When unpacking compressed archive check exit status of the child (gzip or bzip)sobomax2002-02-071-2/+20
| | | | | | | and exit with error code if that status != 0. PR: 30876 Submitted by: Simon Gerraty <sig@juniper.net>
* msg_out is already initializedpeter2001-08-131-1/+1
|
* Removed duplicate VCS ID tags, as per style(9).ru2001-08-131-1/+1
|
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-101-1/+1
|
* Fix the type of the NULL arg to execl()brian2001-07-091-1/+3
| | | | Idea from: Theo de Raadt <deraadt@openbsd.org>
* mdoc(7) police: use .Nm, remove blank line (these cause warnings in mdocNG).ru2001-04-041-2/+3
|
* Add to BUGS section why tar can't dump large minorsphk2001-03-281-0/+5
|
* Fix -I getopt formache2001-03-231-1/+1
| | | | | PR: 26010 Submitted by: Peter Jeremy <jeremyp@gsmx07.alcatel.com.au>
* Cosmetique, use %R instead of %H:%Mache2001-03-211-1/+1
|
* Don't attempt to parse %c output, use nl_langinfo insteadache2001-03-211-6/+14
|
* mdoc(7) police: Nm macro remembers its argument on the firstru2001-03-051-1/+1
| | | | call, punctuation characters should be separated by whitespace.
* Introduce $TAR_RSH to enable use of ssh as transport.ume2001-02-183-9/+28
|
* Quick fix for attempts to free non-malloc()ed memory. The variablesbde2001-02-181-0/+4
| | | | | | | | | | current_file_name and current_link_name sometimes point into the middle of malloc()ed memory and sometimes point to alloca()ed memory, but free() is sometimes called on them. This seems to be harmless for the usual tar operations, but it is usually fatal for `tar -W'. E.g., for `cd /etc; tar Wcf /tmp/foo rc', at the start of verify_volume(), current_file_name points to alloca()ed memory, and tar attempts to free it.
* mdoc(7) police: split punctuation characters + misc fixes.ru2001-02-011-2/+2
|
* s/rsa0/sa0/gobrien2001-01-012-8/+8
|
* mdoc(7) police: formatting fixes.ru2000-12-251-87/+177
|
* Clean up the -j/-y/--bzip entry in usage().obrien2000-12-245-7/+140
| | | | | | | | Add the -U and --unlink-first options which are the offical verions of our --unlink localism. Add support for the "TAR_OPTIONS" environmental variable. Obtained from: GNU tar 1.13.18
* Add -j as the offical "pipe thru bzip2 compression program" option.obrien2000-12-242-24/+37
| | | | | | Make -I equivalent to -T for compatiblity with Solaris. Obtained from: GNU tar 1.13.18
* Update the date of last change.obrien2000-12-221-1/+1
| | | | Submitted by: ru
* Add the -bzip and -I flags as aliases for -y for Red Hat compatibility.obrien2000-12-222-1/+5
|
* mdoc(7) police: use canonical form of .Dd macro.ru2000-12-111-1/+1
|
* logru2000-11-221-1/+4
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-7/+7
|
* Use Fx macro wherever possible.ru2000-11-141-1/+1
|
* Don't call fprintf() without a format string.kris2000-07-121-1/+3
|
* Correct the usage printed for --exclude, which takes a globbing patternsheldonh2000-07-051-1/+1
| | | | | | | and not a file name. PR: 19698 Reported by: Jeff Blaine <jblaine@mitre.org>
* Update device references.kris2000-05-071-3/+3
|
* Remove xrefs to obsolete ft driver.nik2000-03-011-1/+0
| | | | | PR: docs/17080 Submitted by: Udo Erdelhoff <ue@nathan.ruhr.de>
* Fix typo for the flag ``--ungzip'' which should have been ``--gunzip''archie2000-01-241-1/+4
| | | | | | | | as is documented in the man page. Retain the older mistaken version of the flag for backwards compatibility in case anybody is using it. Add $FreeBSD$ tag as cvs requires it. PR: gnu/7800
* $Revision$ -> $FreeBSD$peter1999-09-061-1/+1
|
* $Header$ -> $FreeBSD$peter1999-08-281-2/+2
|
* $Id$ -> $FreeBSD$peter1999-08-271-1/+1
|
* Support 21-bit minor numbers. Avoid wasting a byte in their octalbde1999-08-111-2/+15
| | | | | | | | representation by generating the same format as tar-1.13 (use a single space as the terminator for 7-digit octal numbers). This is POSIX.1 conformant (2-byte terminators are just a bug or historical wart in old versions of gnu tar). All devices created by `MAKEDEV all' except rsa0.ctl can now be handled by tar(1).
OpenPOWER on IntegriCloud