From owner-cvs-all@FreeBSD.ORG Mon Sep 5 04:36:09 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org 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 23A4916A41F; Mon, 5 Sep 2005 04:36:09 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA4FA43D45; Mon, 5 Sep 2005 04:36:08 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j854a8Yu036326; Mon, 5 Sep 2005 04:36:08 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j854a8b6036325; Mon, 5 Sep 2005 04:36:08 GMT (envelope-from csjp) Message-Id: <200509050436.j854a8b6036325@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Mon, 5 Sep 2005 04:36:08 +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/bin/mv mv.c src/bin/cp cp.c extern.h utils.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, 05 Sep 2005 04:36:09 -0000 csjp 2005-09-05 04:36:08 UTC FreeBSD src repository Modified files: bin/mv mv.c bin/cp cp.c extern.h utils.c Log: Attempt to complete the userspace integration of POSIX.1e extended ACLs. This includes adding support for ACLs into cp(1) and mv(1) userspace utilities. For mv(1), if _PC_ACL_EXTENDED is in effect for the source AND destination operands, the destination file's ACLs shall reflect the source. For cp(1), if _PC_ACL_EXTENDED is in effect for both source and destination operands, and -p has been specified, the ACLs from the source shall be preserved on the destination. MFC after: 1 month Revision Changes Path 1.52 +4 -1 src/bin/cp/cp.c 1.20 +2 -0 src/bin/cp/extern.h 1.46 +80 -0 src/bin/cp/utils.c 1.46 +18 -1 src/bin/mv/mv.c