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