From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C688F1392EF for ; Fri, 27 Jun 2014 12:26:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6497DE0A99; Fri, 27 Jun 2014 12:26:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 01914E0A99 for ; Fri, 27 Jun 2014 12:26:17 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E5F093401E6 for ; Fri, 27 Jun 2014 12:26:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id C383319184 for ; Fri, 27 Jun 2014 12:26:14 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1403871988.be6c34290f1c5a0c4e52b03dc5f668046409a84a.blueness@gentoo> Subject: [gentoo-commits] proj/elfix:master commit in: misc/install-xattr/ X-VCS-Repository: proj/elfix X-VCS-Files: misc/install-xattr/install-xattr.c X-VCS-Directories: misc/install-xattr/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: be6c34290f1c5a0c4e52b03dc5f668046409a84a X-VCS-Branch: master Date: Fri, 27 Jun 2014 12:26:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b43eef8a-2311-4868-9cc9-dddcb9a7f260 X-Archives-Hash: 79820ea30fcaff39b6be3c9597f732a8 commit: be6c34290f1c5a0c4e52b03dc5f668046409a84a Author: Jason Zaman perfinion com> AuthorDate: Fri Jun 27 12:07:03 2014 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Fri Jun 27 12:26:28 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=be6c3429 misc/install-xattr: exclude trusted.* by default trusted.* xattrs require the sys_admin capability and should be excluded by default Signed-off-by: Jason Zaman perfinion.com> --- misc/install-xattr/install-xattr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/install-xattr/install-xattr.c b/misc/install-xattr/install-xattr.c index f2157fd..805c0a4 100644 --- a/misc/install-xattr/install-xattr.c +++ b/misc/install-xattr/install-xattr.c @@ -251,7 +251,7 @@ main(int argc, char* argv[]) portage_xattr_exclude = getenv("PORTAGE_XATTR_EXCLUDE"); if (portage_xattr_exclude == NULL) - exclude = xstrdup("security.* system.nfs4_acl"); + exclude = xstrdup("security.* trusted.* system.nfs4_acl"); else exclude = xstrdup(portage_xattr_exclude);