From commits-return-50014-archive-asf-public=cust-asf.ponee.io@subversion.apache.org Sat Dec 1 23:12:21 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 214AB18064E for ; Sat, 1 Dec 2018 23:12:20 +0100 (CET) Received: (qmail 9672 invoked by uid 500); 1 Dec 2018 22:12:20 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 9662 invoked by uid 99); 1 Dec 2018 22:12:20 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 01 Dec 2018 22:12:20 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 9F2203A0103 for ; Sat, 1 Dec 2018 22:12:19 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1847924 - /subversion/trunk/subversion/libsvn_repos/authz.h Date: Sat, 01 Dec 2018 22:12:19 -0000 To: commits@subversion.apache.org From: brane@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20181201221219.9F2203A0103@svn01-us-west.apache.org> Author: brane Date: Sat Dec 1 22:12:19 2018 New Revision: 1847924 URL: http://svn.apache.org/viewvc?rev=1847924&view=rev Log: * subversion/libsvn_repos/authz.h (authz_full_t): Fix comment: all selectors can be inverted, not just groups and aliases. Modified: subversion/trunk/subversion/libsvn_repos/authz.h Modified: subversion/trunk/subversion/libsvn_repos/authz.h URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_repos/authz.h?rev=1847924&r1=1847923&r2=1847924&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_repos/authz.h (original) +++ subversion/trunk/subversion/libsvn_repos/authz.h Sat Dec 1 22:12:19 2018 @@ -139,7 +139,7 @@ typedef struct authz_full_t svn_boolean_t has_authn_rights; authz_global_rights_t authn_rights; - /* Globally accumulated rights from inverted groups or aliases. */ + /* Globally accumulated rights from inverted selectors. */ svn_boolean_t has_neg_rights; authz_global_rights_t neg_rights; @@ -261,6 +261,7 @@ typedef struct authz_acl_t /* The parsed rule. */ authz_rule_t rule; + /* Access rights for anonymous users. */ svn_boolean_t has_anon_access; authz_access_t anon_access;