[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: rev 2684

From: Karl Fogel <kfogel_at_newton.ch.collab.net>
Date: 2002-07-30 16:39:23 CEST

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

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.