From owner-svn-src-head@FreeBSD.ORG Thu Sep 9 20:37:19 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE11B106566C; Thu, 9 Sep 2010 20:37:19 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9D5308FC0A; Thu, 9 Sep 2010 20:37:19 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o89KbJRM030313; Thu, 9 Sep 2010 20:37:19 GMT (envelope-from trasz@svn.freebsd.org) Received: (from trasz@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o89KbJRU030310; Thu, 9 Sep 2010 20:37:19 GMT (envelope-from trasz@svn.freebsd.org) Message-Id: <201009092037.o89KbJRU030310@svn.freebsd.org> From: Edward Tomasz Napierala Date: Thu, 9 Sep 2010 20:37:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r212379 - head/lib/libc/posix1e X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Sep 2010 20:37:19 -0000 Author: trasz Date: Thu Sep 9 20:37:19 2010 New Revision: 212379 URL: http://svn.freebsd.org/changeset/base/212379 Log: Arrgh, tested wrong source tree _again_. Fix previous commit. Also, this and previous one are MFC candidate. MFC after: 1 month Modified: head/lib/libc/posix1e/acl_strip.c Modified: head/lib/libc/posix1e/acl_strip.c ============================================================================== --- head/lib/libc/posix1e/acl_strip.c Thu Sep 9 20:26:30 2010 (r212378) +++ head/lib/libc/posix1e/acl_strip.c Thu Sep 9 20:37:19 2010 (r212379) @@ -180,7 +180,7 @@ acl_is_trivial_np(const acl_t aclp, int * it's non trivial by definition. */ if (aclp->ats_acl.acl_cnt > 6) { - *trivialp = 1; + *trivialp = 0; return (0); }