From owner-cvs-all@FreeBSD.ORG Thu Jun 3 16:29:48 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 691AB16A4CE; Thu, 3 Jun 2004 16:29:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 621FC43D39; Thu, 3 Jun 2004 16:29:48 -0700 (PDT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i53NTmKU058000; Thu, 3 Jun 2004 16:29:48 -0700 (PDT) (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i53NTmtL057999; Thu, 3 Jun 2004 16:29:48 -0700 (PDT) (envelope-from kientzle) Message-Id: <200406032329.i53NTmtL057999@repoman.freebsd.org> From: Tim Kientzle Date: Thu, 3 Jun 2004 16:29:48 -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_private.h archive_read.c archive_read_extract.c archive_write.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Jun 2004 23:29:48 -0000 kientzle 2004/06/03 16:29:47 PDT FreeBSD src repository Modified files: lib/libarchive archive_private.h archive_read.c archive_read_extract.c archive_write.c Log: Refactor the extraction code somewhat. In particular, push extract data down into archive_read_extract.c and out of the library-global archive_private.h; push dir-specific mode/time fixup down into dir restore function; now that the fixup list is file-local, I can use somewhat more natural naming. Oh, yeah, update a bunch of comments to match current reality. Revision Changes Path 1.12 +1 -2 src/lib/libarchive/archive_private.h 1.8 +0 -1 src/lib/libarchive/archive_read.c 1.14 +104 -116 src/lib/libarchive/archive_read_extract.c 1.7 +0 -1 src/lib/libarchive/archive_write.c