Noorul Islam K M <noo...@collab.net> writes:

> +static svn_error_t *
> +props_only_receiver(void *baton, svn_log_entry_t *log_entry, apr_pool_t 
> *pool)
> +{
> +  props_only_receiver_baton_t *rb = baton;
> +
> +  if (log_entry->changed_paths2)
> +    {
> +      apr_array_header_t *sorted_paths;
> +      int i;
> +      svn_boolean_t text_modified = FALSE;
> +      
> +      /* Get an array of sorted hash keys. */
> +      sorted_paths = svn_sort__hash(log_entry->changed_paths2,
> +                                    svn_sort_compare_items_as_paths, pool);

Why sort?

> +
> +      for (i = 0; i < sorted_paths->nelts; i++)
> +        {
> +          svn_sort__item_t *item = &(APR_ARRAY_IDX(sorted_paths, i,
> +                                                   svn_sort__item_t));
> +          svn_log_changed_path2_t *log_item
> +            = apr_hash_get(log_entry->changed_paths2, item->key, item->klen);
> +
> +          if (log_item->text_modified == svn_tristate_true)
> +            {
> +              text_modified = TRUE;
> +              break;
> +            }
> +          
> +        }
> +
> +      if ((text_modified && rb->props_only)
> +          || (! text_modified && rb->ignore_props_only))
> +             return SVN_NO_ERROR;
> +    }
> +
> +  if (! rb->discover_changed_paths)
> +      log_entry->changed_paths2 = NULL;

Set changed_paths as well?

> +      
> +  return rb->receiver(rb->baton, log_entry, pool);
> +}
> +

-- 
uberSVN: Apache Subversion Made Easy
http://www.uberSVN.com

Reply via email to