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

Re: [PATCH] for flag check in fold_state_changes()

From: <kfogel_at_collab.net>
Date: 2001-09-24 22:22:37 CEST

Philip Martin <philip_martin@ntlworld.com> writes:
> While trying to understand fold_state_changes() I discovered what
> looks like an error:
>
> Philip

Applied, thanks!

-K

> 2001-09-21 Philip Martin <philip_martin@ntlworld.com>
>
> * subversion/libsvn_wc/entries.c: fix check of
> modify_existence flag in fold_state_changes()
>
>
> --- entries.c~ Thu Sep 20 21:56:37 2001
> +++ entries.c Fri Sep 21 01:51:18 2001
> @@ -1171,7 +1171,7 @@
>
> /* If we're not about to modify the existence, we'll use the
> existence of the current entry (if one it exists -- ha!) */
> - if ((! *modify_flags & SVN_WC__ENTRY_MODIFY_EXISTENCE) && (entry))
> + if (! (*modify_flags & SVN_WC__ENTRY_MODIFY_EXISTENCE) && (entry))
> existence = entry->existence;
>
> /* If we're not merging in changes, only the _add, _delete, _replace
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: dev-help@subversion.tigris.org

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Oct 21 14:36:42 2006

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.