From owner-cvs-src@FreeBSD.ORG Sat Mar 15 11:04:46 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 25F2A106566B; Sat, 15 Mar 2008 11:04:46 +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 0A9B58FC13; Sat, 15 Mar 2008 11:04:46 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m2FB4j3h012700; Sat, 15 Mar 2008 11:04:45 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m2FB4jcX012699; Sat, 15 Mar 2008 11:04:45 GMT (envelope-from kientzle) Message-Id: <200803151104.m2FB4jcX012699@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 15 Mar 2008 11:04:45 +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/lib/libarchive archive_write_private.h archive_write_set_format_ar.c archive_write_set_format_cpio.c archive_write_set_format_cpio_newc.c archive_write_set_format_pax.c archive_write_set_format_shar.c archive_write_set_format_ustar.c 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: Sat, 15 Mar 2008 11:04:46 -0000 kientzle 2008-03-15 11:04:45 UTC FreeBSD src repository Modified files: lib/libarchive archive_write_private.h archive_write_set_format_ar.c archive_write_set_format_cpio.c archive_write_set_format_cpio_newc.c archive_write_set_format_pax.c archive_write_set_format_shar.c archive_write_set_format_ustar.c Log: Remove the duplicate "archive_format" and "archive_format_name" fields from the private archive_write structure and fix up all writers to use the format fields in the base "archive" structure. This error made it impossible to query the format after setting up a writer because the write format was stored in an inaccessible place. Revision Changes Path 1.3 +0 -7 src/lib/libarchive/archive_write_private.h 1.6 +6 -6 src/lib/libarchive/archive_write_set_format_ar.c 1.14 +2 -2 src/lib/libarchive/archive_write_set_format_cpio.c 1.4 +2 -2 src/lib/libarchive/archive_write_set_format_cpio_newc.c 1.46 +6 -6 src/lib/libarchive/archive_write_set_format_pax.c 1.19 +4 -4 src/lib/libarchive/archive_write_set_format_shar.c 1.26 +2 -2 src/lib/libarchive/archive_write_set_format_ustar.c