From owner-cvs-src@FreeBSD.ORG Sun Mar 11 10:36:43 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 72D3E16A400; Sun, 11 Mar 2007 10:36:43 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5792313C49D; Sun, 11 Mar 2007 10:36:43 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2BAahY3031395; Sun, 11 Mar 2007 10:36:43 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2BAaha6031394; Sun, 11 Mar 2007 10:36:43 GMT (envelope-from kientzle) Message-Id: <200703111036.l2BAaha6031394@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 11 Mar 2007 10:36:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/tar Makefile bsdtar.c bsdtar.h bsdtar_platform.h config_freebsd.h getdate.y matching.c read.c tree.c util.c write.c src/usr.bin/tar/test config.sh test-acl.sh test-basic.sh test-deep-dir.sh test-flags.sh test-nodump.sh ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Mar 2007 10:36:43 -0000 kientzle 2007-03-11 10:36:43 UTC FreeBSD src repository Modified files: usr.bin/tar Makefile bsdtar.c bsdtar.h bsdtar_platform.h getdate.y matching.c read.c tree.c util.c write.c Added files: usr.bin/tar config_freebsd.h usr.bin/tar/test config.sh test-acl.sh test-basic.sh test-deep-dir.sh test-flags.sh test-nodump.sh test-overwrite.sh test-utf8.sh Log: bsdtar 2.0.23: * New test scripts exercise some basic functionality * Most header inclusions are now protected (portability) * read.c now relies on security checks in libarchive instead of trying to do its own (optimization) * -p now enabled by default for root, add --no-same-permissions to disable it * Comments, minor style fixes. Revision Changes Path 1.28 +1 -1 src/usr.bin/tar/Makefile 1.73 +93 -14 src/usr.bin/tar/bsdtar.c 1.27 +1 -0 src/usr.bin/tar/bsdtar.h 1.23 +3 -61 src/usr.bin/tar/bsdtar_platform.h 1.1 +105 -0 src/usr.bin/tar/config_freebsd.h (new) 1.8 +1 -0 src/usr.bin/tar/getdate.y 1.11 +6 -0 src/usr.bin/tar/matching.c 1.28 +23 -138 src/usr.bin/tar/read.c 1.1 +61 -0 src/usr.bin/tar/test/config.sh (new) 1.1 +76 -0 src/usr.bin/tar/test/test-acl.sh (new) 1.1 +411 -0 src/usr.bin/tar/test/test-basic.sh (new) 1.1 +60 -0 src/usr.bin/tar/test/test-deep-dir.sh (new) 1.1 +74 -0 src/usr.bin/tar/test/test-flags.sh (new) 1.1 +52 -0 src/usr.bin/tar/test/test-nodump.sh (new) 1.1 +51 -0 src/usr.bin/tar/test/test-overwrite.sh (new) 1.1 +40 -0 src/usr.bin/tar/test/test-utf8.sh (new) 1.8 +14 -0 src/usr.bin/tar/tree.c 1.16 +30 -4 src/usr.bin/tar/util.c 1.55 +37 -10 src/usr.bin/tar/write.c