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

Re: svn commit: r16781 - trunk/subversion/libsvn_wc

From: Daniel Rall <dlr_at_finemaltcoding.com>
Date: 2005-10-18 20:23:28 CEST

The doc string svn_wc.h is also wrong for this one. I've modified it in
the header file, and will piggy-back the change with the fixes for the
other doc string problems found by Philip.

- Dan

On Mon, 17 Oct 2005, jerenkrantz@tigris.org wrote:

> Author: jerenkrantz
> Date: Mon Oct 17 22:25:33 2005
> New Revision: 16781
>
> Modified:
> trunk/subversion/libsvn_wc/status.c
>
> Log:
> Fix invalid enum type assignments. (As detected by Sun Studio.)
>
> * subversion/libsvn_wc/status.c
> (assemble_status): It appears these assignments should be to
> svn_node_none, not svn_wc_status_none.
>
>
> Modified: trunk/subversion/libsvn_wc/status.c
> Url: http://svn.collab.net/viewcvs/svn/trunk/subversion/libsvn_wc/status.c?rev=16781&p1=trunk/subversion/libsvn_wc/status.c&p2=trunk/subversion/libsvn_wc/status.c&r1=16780&r2=16781
> ==============================================================================
> --- trunk/subversion/libsvn_wc/status.c (original)
> +++ trunk/subversion/libsvn_wc/status.c Mon Oct 17 22:25:33 2005
> @@ -300,7 +300,7 @@
> stat->url = NULL;
> stat->ood_last_cmt_rev = SVN_INVALID_REVNUM;
> stat->ood_last_cmt_date = 0;
> - stat->ood_kind = svn_wc_status_none;
> + stat->ood_kind = svn_node_none;
> stat->ood_last_cmt_author = NULL;
>
> *status = stat;
> @@ -489,7 +489,7 @@
> stat->url = (entry->url ? entry->url : NULL);
> stat->ood_last_cmt_rev = SVN_INVALID_REVNUM;
> stat->ood_last_cmt_date = 0;
> - stat->ood_kind = svn_wc_status_none;
> + stat->ood_kind = svn_node_none;
> stat->ood_last_cmt_author = NULL;

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Oct 18 20:22:43 2005

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.