From owner-cvs-all@FreeBSD.ORG Mon Nov 20 17:06:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1C71916A4A0; Mon, 20 Nov 2006 17:06:42 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7BAB44421; Mon, 20 Nov 2006 16:45:35 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id kAKGjexX005530; Mon, 20 Nov 2006 16:45:40 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id kAKGjdxW005529; Mon, 20 Nov 2006 16:45:39 GMT (envelope-from kientzle) Message-Id: <200611201645.kAKGjdxW005529@repoman.freebsd.org> From: Tim Kientzle Date: Mon, 20 Nov 2006 16:45:39 +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_read_open_file.c archive_read_open_filename.c archive_write_open_file.c archive_write_open_filename.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Mon, 20 Nov 2006 17:06:42 -0000 kientzle 2006-11-20 16:45:39 UTC FreeBSD src repository Modified files: lib/libarchive archive_read_open_file.c archive_read_open_filename.c archive_write_open_file.c archive_write_open_filename.c Log: Forced commit to note CVS repo-copy of archive_{read,write}_open_file.c to archive_{read,write}_open_filename.c. This is part of a minor file shuffle/name clarification: * The archive_{read,write}_open_file() functions are officially renamed to archive_{read,write}_open_filename(), which more accurately reflects their function (they open a data stream identified by a filename). * Preserve the file naming conventions by renaming the files as well. * Keep the old function names (in the new files) as synonyms for backwards compatibility. * Keep the old files around; they'll be recycled soon for the upcoming archive_{read,write}_open_FILE() functions (which open a data stream identified by a FILE * reference). * I'm also, of course, making a nod here to MacOS/Windows case-insensitive filesystems that can't have both _open_file.c and _open_FILE.c. ;-) Revision Changes Path 1.16 +0 -0 src/lib/libarchive/archive_read_open_file.c 1.16 +0 -0 src/lib/libarchive/archive_read_open_filename.c 1.16 +0 -0 src/lib/libarchive/archive_write_open_file.c 1.16 +0 -0 src/lib/libarchive/archive_write_open_filename.c