You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2018/12/01 22:12:19 UTC

svn commit: r1847924 - /subversion/trunk/subversion/libsvn_repos/authz.h

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;