summaryrefslogtreecommitdiff
path: root/usr.bin/tar
diff options
context:
space:
mode:
authorKen Smith <kensmith@FreeBSD.org>2010-07-17 05:41:01 +0000
committerKen Smith <kensmith@FreeBSD.org>2010-07-17 05:41:01 +0000
commit90d6fa76a8141fc596ad376ecd86a8a493836298 (patch)
treec3fe0d41bc0f86f1e7fcaaa9e480f60fec34cb2f /usr.bin/tar
parent9adee7d03f2e4c91e6330410f88fb5addaf2a24a (diff)
Diffstat (limited to 'usr.bin/tar')
-rw-r--r--usr.bin/tar/COPYING2
-rw-r--r--usr.bin/tar/Makefile2
-rw-r--r--usr.bin/tar/bsdtar.12
-rw-r--r--usr.bin/tar/bsdtar.c2
-rw-r--r--usr.bin/tar/bsdtar.h2
-rw-r--r--usr.bin/tar/bsdtar_platform.h2
-rw-r--r--usr.bin/tar/cmdline.c2
-rw-r--r--usr.bin/tar/config_freebsd.h2
-rw-r--r--usr.bin/tar/getdate.c2
-rw-r--r--usr.bin/tar/matching.c2
-rw-r--r--usr.bin/tar/read.c2
-rw-r--r--usr.bin/tar/siginfo.c2
-rw-r--r--usr.bin/tar/subst.c2
-rw-r--r--usr.bin/tar/test/Makefile2
-rw-r--r--usr.bin/tar/test/main.c2
-rw-r--r--usr.bin/tar/test/test.h2
-rw-r--r--usr.bin/tar/test/test_0.c2
-rw-r--r--usr.bin/tar/test/test_basic.c2
-rw-r--r--usr.bin/tar/test/test_copy.c2
-rw-r--r--usr.bin/tar/test/test_getdate.c2
-rw-r--r--usr.bin/tar/test/test_help.c2
-rw-r--r--usr.bin/tar/test/test_option_T.c2
-rw-r--r--usr.bin/tar/test/test_option_q.c2
-rw-r--r--usr.bin/tar/test/test_option_s.c2
-rw-r--r--usr.bin/tar/test/test_patterns.c2
-rw-r--r--usr.bin/tar/test/test_patterns_2.tar.uu2
-rw-r--r--usr.bin/tar/test/test_patterns_3.tar.uu2
-rw-r--r--usr.bin/tar/test/test_patterns_4.tar.uu2
-rw-r--r--usr.bin/tar/test/test_stdio.c2
-rw-r--r--usr.bin/tar/test/test_strip_components.c2
-rw-r--r--usr.bin/tar/test/test_symlink_dir.c2
-rw-r--r--usr.bin/tar/test/test_version.c2
-rw-r--r--usr.bin/tar/tree.c2
-rw-r--r--usr.bin/tar/tree.h2
-rw-r--r--usr.bin/tar/util.c2
-rw-r--r--usr.bin/tar/write.c2
36 files changed, 36 insertions, 36 deletions
diff --git a/usr.bin/tar/COPYING b/usr.bin/tar/COPYING
index 9a88a8091105..8b2890c35cbc 100644
--- a/usr.bin/tar/COPYING
+++ b/usr.bin/tar/COPYING
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/usr.bin/tar/COPYING,v 1.3.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $
All of the C source code and documentation in this package is subject
to the following:
diff --git a/usr.bin/tar/Makefile b/usr.bin/tar/Makefile
index 10998462d91a..effe8f9bb1e5 100644
--- a/usr.bin/tar/Makefile
+++ b/usr.bin/tar/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/usr.bin/tar/Makefile,v 1.44.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $
.include <bsd.own.mk>
PROG= bsdtar
diff --git a/usr.bin/tar/bsdtar.1 b/usr.bin/tar/bsdtar.1
index 8baab7a228d7..49af033501f6 100644
--- a/usr.bin/tar/bsdtar.1
+++ b/usr.bin/tar/bsdtar.1
@@ -22,7 +22,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" $FreeBSD$
+.\" $FreeBSD: src/usr.bin/tar/bsdtar.1,v 1.47.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $
.\"
.Dd March 25, 2009
.Dt BSDTAR 1
diff --git a/usr.bin/tar/bsdtar.c b/usr.bin/tar/bsdtar.c
index cd6fa6314c6f..5af8d77e83bb 100644
--- a/usr.bin/tar/bsdtar.c
+++ b/usr.bin/tar/bsdtar.c
@@ -24,7 +24,7 @@
*/
#include "bsdtar_platform.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/bsdtar.c,v 1.98.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
diff --git a/usr.bin/tar/bsdtar.h b/usr.bin/tar/bsdtar.h
index f0f3e545495b..28ea7e15ccb8 100644
--- a/usr.bin/tar/bsdtar.h
+++ b/usr.bin/tar/bsdtar.h
@@ -22,7 +22,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/tar/bsdtar.h,v 1.40.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $
*/
#include "bsdtar_platform.h"
diff --git a/usr.bin/tar/bsdtar_platform.h b/usr.bin/tar/bsdtar_platform.h
index fb1444206a7b..3aa319ad5d3e 100644
--- a/usr.bin/tar/bsdtar_platform.h
+++ b/usr.bin/tar/bsdtar_platform.h
@@ -22,7 +22,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/tar/bsdtar_platform.h,v 1.30.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $
*/
/*
diff --git a/usr.bin/tar/cmdline.c b/usr.bin/tar/cmdline.c
index efaeafdcb26e..aa99bc922fef 100644
--- a/usr.bin/tar/cmdline.c
+++ b/usr.bin/tar/cmdline.c
@@ -28,7 +28,7 @@
*/
#include "bsdtar_platform.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/cmdline.c,v 1.3.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
#ifdef HAVE_ERRNO_H
#include <errno.h>
diff --git a/usr.bin/tar/config_freebsd.h b/usr.bin/tar/config_freebsd.h
index 64e0d985cffc..7e143b75d65f 100644
--- a/usr.bin/tar/config_freebsd.h
+++ b/usr.bin/tar/config_freebsd.h
@@ -22,7 +22,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/tar/config_freebsd.h,v 1.8.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $
*/
/* A default configuration for FreeBSD, used if there is no config.h. */
diff --git a/usr.bin/tar/getdate.c b/usr.bin/tar/getdate.c
index 8df1e26fba77..b6a7db68bdd9 100644
--- a/usr.bin/tar/getdate.c
+++ b/usr.bin/tar/getdate.c
@@ -29,7 +29,7 @@
#ifdef __FreeBSD__
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/getdate.c,v 1.1.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
#endif
#include <ctype.h>
diff --git a/usr.bin/tar/matching.c b/usr.bin/tar/matching.c
index 36bc84b2f600..6a955873089b 100644
--- a/usr.bin/tar/matching.c
+++ b/usr.bin/tar/matching.c
@@ -24,7 +24,7 @@
*/
#include "bsdtar_platform.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/matching.c,v 1.17.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
#ifdef HAVE_ERRNO_H
#include <errno.h>
diff --git a/usr.bin/tar/read.c b/usr.bin/tar/read.c
index 0756cd81132e..b233ceff132d 100644
--- a/usr.bin/tar/read.c
+++ b/usr.bin/tar/read.c
@@ -24,7 +24,7 @@
*/
#include "bsdtar_platform.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/read.c,v 1.43.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
diff --git a/usr.bin/tar/siginfo.c b/usr.bin/tar/siginfo.c
index e0881ac1a1db..72848d934932 100644
--- a/usr.bin/tar/siginfo.c
+++ b/usr.bin/tar/siginfo.c
@@ -24,7 +24,7 @@
*/
#include "bsdtar_platform.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/siginfo.c,v 1.3.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
#include <errno.h>
#include <signal.h>
diff --git a/usr.bin/tar/subst.c b/usr.bin/tar/subst.c
index 13464cd5e16e..aeee98987709 100644
--- a/usr.bin/tar/subst.c
+++ b/usr.bin/tar/subst.c
@@ -24,7 +24,7 @@
*/
#include "bsdtar_platform.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/subst.c,v 1.5.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
#if HAVE_REGEX_H
#include "bsdtar.h"
diff --git a/usr.bin/tar/test/Makefile b/usr.bin/tar/test/Makefile
index 2f6f05665cdb..6b228efca59f 100644
--- a/usr.bin/tar/test/Makefile
+++ b/usr.bin/tar/test/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/usr.bin/tar/test/Makefile,v 1.7.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $
# Where to find the tar sources (for the internal unit tests)
TAR_SRCDIR=${.CURDIR}/..
diff --git a/usr.bin/tar/test/main.c b/usr.bin/tar/test/main.c
index 041b7a0d9e63..f7a27fbe5c1d 100644
--- a/usr.bin/tar/test/main.c
+++ b/usr.bin/tar/test/main.c
@@ -44,7 +44,7 @@
#undef EXTRA_DUMP /* How to dump extra data */
/* How to generate extra version info. */
#define EXTRA_VERSION (systemf("%s --version", testprog) ? "" : "")
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/main.c,v 1.10.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
/*
* "list.h" is simply created by "grep DEFINE_TEST"; it has
diff --git a/usr.bin/tar/test/test.h b/usr.bin/tar/test/test.h
index 6a1e1e8eb007..6199974e5dc6 100644
--- a/usr.bin/tar/test/test.h
+++ b/usr.bin/tar/test/test.h
@@ -22,7 +22,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/tar/test/test.h,v 1.8.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $
*/
/* Every test program should #include "test.h" as the first thing. */
diff --git a/usr.bin/tar/test/test_0.c b/usr.bin/tar/test/test_0.c
index d224daaeacc2..24314140f17b 100644
--- a/usr.bin/tar/test/test_0.c
+++ b/usr.bin/tar/test/test_0.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_0.c,v 1.4.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
/*
* This first test does basic sanity checks on the environment. For
diff --git a/usr.bin/tar/test/test_basic.c b/usr.bin/tar/test/test_basic.c
index 3fad7545f375..5f3d1973c90d 100644
--- a/usr.bin/tar/test/test_basic.c
+++ b/usr.bin/tar/test/test_basic.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_basic.c,v 1.4.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
static void
diff --git a/usr.bin/tar/test/test_copy.c b/usr.bin/tar/test/test_copy.c
index 120d9f39e99c..7ce34c2235ca 100644
--- a/usr.bin/tar/test/test_copy.c
+++ b/usr.bin/tar/test/test_copy.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_copy.c,v 1.6.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
#define LOOP_MAX 170
diff --git a/usr.bin/tar/test/test_getdate.c b/usr.bin/tar/test/test_getdate.c
index cd6d55a93e6a..ab73acda8bb4 100644
--- a/usr.bin/tar/test/test_getdate.c
+++ b/usr.bin/tar/test/test_getdate.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_getdate.c,v 1.3.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
#include <time.h>
diff --git a/usr.bin/tar/test/test_help.c b/usr.bin/tar/test/test_help.c
index c547dbc47994..7b938f6816cf 100644
--- a/usr.bin/tar/test/test_help.c
+++ b/usr.bin/tar/test/test_help.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_help.c,v 1.2.6.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
/*
* Test that "--help", "-h", and "-W help" options all work and
diff --git a/usr.bin/tar/test/test_option_T.c b/usr.bin/tar/test/test_option_T.c
index 9f4a2b34c6cf..025dd93e44f6 100644
--- a/usr.bin/tar/test/test_option_T.c
+++ b/usr.bin/tar/test/test_option_T.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_option_T.c,v 1.5.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
static int
touch(const char *fn)
diff --git a/usr.bin/tar/test/test_option_q.c b/usr.bin/tar/test/test_option_q.c
index 1d92dd56963b..8b840bf857e0 100644
--- a/usr.bin/tar/test/test_option_q.c
+++ b/usr.bin/tar/test/test_option_q.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_option_q.c,v 1.3.6.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
DEFINE_TEST(test_option_q)
{
diff --git a/usr.bin/tar/test/test_option_s.c b/usr.bin/tar/test/test_option_s.c
index 1059066fd5cc..d57d4af98c0d 100644
--- a/usr.bin/tar/test/test_option_s.c
+++ b/usr.bin/tar/test/test_option_s.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_option_s.c,v 1.2.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
static int
mkfile(const char *fn, const char *contents)
diff --git a/usr.bin/tar/test/test_patterns.c b/usr.bin/tar/test/test_patterns.c
index 66a4ecf02a5b..2ac9a98229f6 100644
--- a/usr.bin/tar/test/test_patterns.c
+++ b/usr.bin/tar/test/test_patterns.c
@@ -24,7 +24,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_patterns.c,v 1.9.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
DEFINE_TEST(test_patterns)
{
diff --git a/usr.bin/tar/test/test_patterns_2.tar.uu b/usr.bin/tar/test/test_patterns_2.tar.uu
index 1ed9a7d1aea0..7a0032c28c60 100644
--- a/usr.bin/tar/test/test_patterns_2.tar.uu
+++ b/usr.bin/tar/test/test_patterns_2.tar.uu
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/usr.bin/tar/test/test_patterns_2.tar.uu,v 1.1.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $
begin 644 test_patterns_2.tar
M+W1M<"]F;V\O````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
diff --git a/usr.bin/tar/test/test_patterns_3.tar.uu b/usr.bin/tar/test/test_patterns_3.tar.uu
index e8d487ed259b..5e3384077429 100644
--- a/usr.bin/tar/test/test_patterns_3.tar.uu
+++ b/usr.bin/tar/test/test_patterns_3.tar.uu
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/usr.bin/tar/test/test_patterns_3.tar.uu,v 1.1.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $
begin 644 test_patterns_3.tar
M+W1M<"]F;V\O8F%R+P``````````````````````````````````````````
M````````````````````````````````````````````````````````````
diff --git a/usr.bin/tar/test/test_patterns_4.tar.uu b/usr.bin/tar/test/test_patterns_4.tar.uu
index eb89518df453..9d427e577631 100644
--- a/usr.bin/tar/test/test_patterns_4.tar.uu
+++ b/usr.bin/tar/test/test_patterns_4.tar.uu
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/usr.bin/tar/test/test_patterns_4.tar.uu,v 1.1.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $
begin 644 test_patterns_4.tar
M+V9I;&4P,0``````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
diff --git a/usr.bin/tar/test/test_stdio.c b/usr.bin/tar/test/test_stdio.c
index 2d24ae350328..8d0fa15133f1 100644
--- a/usr.bin/tar/test/test_stdio.c
+++ b/usr.bin/tar/test/test_stdio.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_stdio.c,v 1.2.6.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
DEFINE_TEST(test_stdio)
{
diff --git a/usr.bin/tar/test/test_strip_components.c b/usr.bin/tar/test/test_strip_components.c
index 38e0e48cac3c..0b537d280111 100644
--- a/usr.bin/tar/test/test_strip_components.c
+++ b/usr.bin/tar/test/test_strip_components.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_strip_components.c,v 1.5.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
static int
touch(const char *fn)
diff --git a/usr.bin/tar/test/test_symlink_dir.c b/usr.bin/tar/test/test_symlink_dir.c
index 356f17c45015..cc136f35d560 100644
--- a/usr.bin/tar/test/test_symlink_dir.c
+++ b/usr.bin/tar/test/test_symlink_dir.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_symlink_dir.c,v 1.3.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
/*
* tar -x -P should follow existing symlinks for dirs, but not other
diff --git a/usr.bin/tar/test/test_version.c b/usr.bin/tar/test/test_version.c
index 4f249a517b22..bfc643fa2449 100644
--- a/usr.bin/tar/test/test_version.c
+++ b/usr.bin/tar/test/test_version.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_version.c,v 1.3.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
/*
* Test that --version option works and generates reasonable output.
diff --git a/usr.bin/tar/tree.c b/usr.bin/tar/tree.c
index f70b6d5a6492..e75c67ac0ead 100644
--- a/usr.bin/tar/tree.c
+++ b/usr.bin/tar/tree.c
@@ -43,7 +43,7 @@
* regular dir or via fchdir(2) for a symlink).
*/
#include "bsdtar_platform.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/tree.c,v 1.11.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
diff --git a/usr.bin/tar/tree.h b/usr.bin/tar/tree.h
index 09e36e4eed90..159420a31752 100644
--- a/usr.bin/tar/tree.h
+++ b/usr.bin/tar/tree.h
@@ -22,7 +22,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/tar/tree.h,v 1.4.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $
*/
/*-
diff --git a/usr.bin/tar/util.c b/usr.bin/tar/util.c
index 7b2da4888ace..63e69977794c 100644
--- a/usr.bin/tar/util.c
+++ b/usr.bin/tar/util.c
@@ -24,7 +24,7 @@
*/
#include "bsdtar_platform.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/util.c,v 1.27.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
diff --git a/usr.bin/tar/write.c b/usr.bin/tar/write.c
index efc94de682d6..8bc2683305b0 100644
--- a/usr.bin/tar/write.c
+++ b/usr.bin/tar/write.c
@@ -24,7 +24,7 @@
*/
#include "bsdtar_platform.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/write.c,v 1.85.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $");
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>