Author: stefan2
Date: Wed Oct 12 15:38:15 2016
New Revision: 1764482

URL: http://svn.apache.org/viewvc?rev=1764482&view=rev
Log:
On the authzperf branch:

* subversion/libsvn_repos/authz.c
  (add_next_node): Refine commentary. No functional change.

Modified:
    subversion/branches/authzperf/subversion/libsvn_repos/authz.c

Modified: subversion/branches/authzperf/subversion/libsvn_repos/authz.c
URL: 
http://svn.apache.org/viewvc/subversion/branches/authzperf/subversion/libsvn_repos/authz.c?rev=1764482&r1=1764481&r2=1764482&view=diff
==============================================================================
--- subversion/branches/authzperf/subversion/libsvn_repos/authz.c (original)
+++ subversion/branches/authzperf/subversion/libsvn_repos/authz.c Wed Oct 12 
15:38:15 2016
@@ -952,7 +952,8 @@ add_next_node(lookup_state_t *state,
     {
       /* The rule with the highest sequence number is the one that applies.
        * Not all nodes that we are following have rules that apply directly
-       * to this path but only some deep sub-node. */
+       * to this path but are mere intermediates that may only have some
+       * matching deep sub-node. */
       combine_access(&state->rights, &node->rights);
 
       /* The rule tree node can be seen as an overlay of all the nodes that
@@ -964,8 +965,8 @@ add_next_node(lookup_state_t *state,
       /* NODE is now enlisted as a (potential) match for the next segment. */
       APR_ARRAY_PUSH(state->next, node_t *) = node;
 
-      /* Variable length sub-segment sequences apply to the same node due
-       * to matching empty sequences as well. */
+      /* Variable length sub-segment sequences apply to the same node as
+       * they match empty sequences as well. */
       if (node->pattern_sub_nodes && node->pattern_sub_nodes->any_var)
         {
           node = node->pattern_sub_nodes->any_var;


Reply via email to