Branko Čibej <brane@xbc.nu> writes:
> Here's the culprit, in subversion/libsvn_ra_dav/log.c:
> 
> +      /* See documentation for `svn_repos_node_t' in svn_repos.h,
> +         and `svn_log_message_receiver_t' in svn_types.h, for more
> +         about these action codes. */
> +      if ((elm->id == ELEM_added_path) || (elm->id == ELEM_replaced_path))
> +        {
> +          lb->this_path_item->action
> +            = (elm->id == ELEM_added_path) ? 'A' : 'R';
> +          copyfrom_path = get_attr(atts, "copyfrom-path");
> +          copyfrom_rev = get_attr(atts, "copyfrom-rev");
> +          if (copyfrom_path
> +              && copyfrom_rev
> +              && SVN_IS_VALID_REVNUM (copyfrom_rev))
> +            {
> +              lb->this_path_item->copyfrom_path = apr_pstrdup(lb->subpool,
> +                                                              copyfrom_path);
> +              lb->this_path_item->copyfrom_rev = atoi(copyfrom_rev);
> +            }
Oh, duh.
I'll fix that, obvious braino.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Jul 30 16:54:12 2002