From owner-cvs-src@FreeBSD.ORG Tue Apr 6 16:17:14 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10F2D16A4CE; Tue, 6 Apr 2004 16:17:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B20743D2D; Tue, 6 Apr 2004 16:17:14 -0700 (PDT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i36NGoGe099343; Tue, 6 Apr 2004 16:16:50 -0700 (PDT) (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i36NGoaq099342; Tue, 6 Apr 2004 16:16:50 -0700 (PDT) (envelope-from kientzle) Message-Id: <200404062316.i36NGoaq099342@repoman.freebsd.org> From: Tim Kientzle Date: Tue, 6 Apr 2004 16:16:50 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive archive_entry.c archive_entry.h archive_write_set_format_pax.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 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: Tue, 06 Apr 2004 23:17:14 -0000 kientzle 2004/04/06 16:16:50 PDT FreeBSD src repository Modified files: lib/libarchive archive_entry.c archive_entry.h archive_private.h archive_read_extract.c archive_write_set_format_pax.c Log: Fix some issues with ACL handling: * ACL storage is no longer erased before a group of entries are added. * ACL text creation no longer tries to skip over non-existent text. * UTF8 encoder no longer blows up on invalid wide characters. * Fixed ACL state management for default ACLs. Also, publicize function for obtaining text-format ACL in various formats. The interface is now extensible through a "flags" argument that allows you to select a variant format. Revision Changes Path 1.5 +49 -35 src/lib/libarchive/archive_entry.c 1.4 +15 -0 src/lib/libarchive/archive_entry.h 1.5 +0 -1 src/lib/libarchive/archive_private.h 1.5 +5 -5 src/lib/libarchive/archive_read_extract.c 1.6 +20 -12 src/lib/libarchive/archive_write_set_format_pax.c