From owner-cvs-src@FreeBSD.ORG Thu Aug 28 06:15:53 2008 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D49D1065687; Thu, 28 Aug 2008 06:15:53 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5E26E8FC13; Thu, 28 Aug 2008 06:15:53 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.2/8.14.2) with ESMTP id m7S6FrRX035559; Thu, 28 Aug 2008 06:15:53 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.2/8.14.1/Submit) id m7S6FrSS035558; Thu, 28 Aug 2008 06:15:53 GMT (envelope-from kientzle@repoman.freebsd.org) Message-Id: <200808280615.m7S6FrSS035558@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to kientzle@repoman.freebsd.org using -f From: Tim Kientzle Date: Thu, 28 Aug 2008 06:15:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.bin/tar matching.c read.c src/usr.bin/tar/test main.c test.h test_copy.c test_option_T.c test_patterns.c test_patterns_2.tgz.uu test_patterns_3.tgz.uu 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: Thu, 28 Aug 2008 06:15:53 -0000 kientzle 2008-08-28 06:15:29 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/tar matching.c read.c usr.bin/tar/test main.c test.h test_copy.c test_option_T.c test_patterns.c Added files: (Branch: RELENG_6) usr.bin/tar/test test_patterns_2.tgz.uu test_patterns_3.tgz.uu Log: SVN rev 182353 on 2008-08-28 06:15:29Z by kientzle MFC r181750,181801,181821,181845,181904,181958,181959,181971: Pattern-matching fixes. * Many tests. * No longer strip leading '/' from pattern, so that /foo once again matches /foo. (This was correct in FreeBSD 6.2, broken in 6.3, and will now be fixed in 6.4.) * Strip leading "./" or ".//" from both filenames and patterns so that "./foo" matches "foo", etc. PR: bin/117909 Revision Changes Path 1.9.2.6 +39 -5 src/usr.bin/tar/matching.c 1.23.2.15 +10 -11 src/usr.bin/tar/read.c 1.4.2.3 +31 -0 src/usr.bin/tar/test/main.c 1.4.2.3 +4 -0 src/usr.bin/tar/test/test.h 1.3.2.3 +3 -0 src/usr.bin/tar/test/test_copy.c 1.3.2.3 +4 -1 src/usr.bin/tar/test/test_option_T.c 1.6.2.2 +53 -0 src/usr.bin/tar/test/test_patterns.c 1.1.4.1 +9 -0 src/usr.bin/tar/test/test_patterns_2.tgz.uu (new) 1.1.4.1 +8 -0 src/usr.bin/tar/test/test_patterns_3.tgz.uu (new)