From owner-cvs-all@FreeBSD.ORG Sun Jun 27 18:38:13 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 6F3F116A4CE; Sun, 27 Jun 2004 18:38:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6881A43D39; Sun, 27 Jun 2004 18:38:13 +0000 (GMT) (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 i5RIcDH1015289; Sun, 27 Jun 2004 18:38:13 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i5RIcDjG015288; Sun, 27 Jun 2004 18:38:13 GMT (envelope-from kientzle) Message-Id: <200406271838.i5RIcDjG015288@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 27 Jun 2004 18:38:13 +0000 (UTC) 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_read_support_format_tar.c archive_write.c archive_write_open_fd.c archive_write_open_file.c archive_write_set_format_ustar.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: Sun, 27 Jun 2004 18:38:13 -0000 kientzle 2004-06-27 18:38:13 UTC FreeBSD src repository Modified files: lib/libarchive archive_entry.c archive_entry.h archive_private.h archive_read_extract.c archive_read_support_format_tar.c archive_write.c archive_write_open_fd.c archive_write_open_file.c archive_write_set_format_pax.c archive_write_set_format_shar.c archive_write_set_format_ustar.c Log: Clean up some consistent confusion between "dev" and "rdev." Mostly, these were being used correctly even though a lot of variables and function names were mis-named. In the process, I found and fixed a couple of latent bugs and added a guard against adding an archive to itself. Revision Changes Path 1.16 +44 -28 src/lib/libarchive/archive_entry.c 1.9 +7 -4 src/lib/libarchive/archive_entry.h 1.13 +5 -2 src/lib/libarchive/archive_private.h 1.24 +4 -4 src/lib/libarchive/archive_read_extract.c 1.21 +12 -12 src/lib/libarchive/archive_read_support_format_tar.c 1.8 +7 -0 src/lib/libarchive/archive_write.c 1.3 +17 -7 src/lib/libarchive/archive_write_open_fd.c 1.7 +24 -8 src/lib/libarchive/archive_write_open_file.c 1.12 +18 -14 src/lib/libarchive/archive_write_set_format_pax.c 1.10 +4 -4 src/lib/libarchive/archive_write_set_format_shar.c 1.8 +10 -10 src/lib/libarchive/archive_write_set_format_ustar.c