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

Re: svn commit: r34315 - branches/tc_url_rev/subversion/svn

From: Stefan Sperling <stsp_at_elego.de>
Date: Fri, 21 Nov 2008 22:02:58 +0000

On Fri, Nov 21, 2008 at 07:14:41PM +0000, Stefan Sperling wrote:
> On Fri, Nov 21, 2008 at 09:49:41AM -0800, julianfoad_at_tigris.org wrote:
> > Modified: branches/tc_url_rev/subversion/svn/util.c
> > URL: http://svn.collab.net/viewvc/svn/branches/tc_url_rev/subversion/svn/util.c?pathrev=34315&r1=34314&r2=34315
> > ==============================================================================
> > --- branches/tc_url_rev/subversion/svn/util.c Fri Nov 21 09:27:40 2008 (r34314)
> > +++ branches/tc_url_rev/subversion/svn/util.c Fri Nov 21 09:49:41 2008 (r34315)
> > @@ -1003,6 +1003,8 @@ svn_cl__node_kind_str(svn_node_kind_t ki
> > {
> > switch (kind)
> > {
> > + case svn_node_file:
> > + return "file";
> > case svn_node_dir:
> > return "dir";
> > case svn_node_file:
>
> Shouldn't this have been:
>
> switch (kind)
> {
> + case svn_node_none:
> + return "none";
> case svn_node_dir:
> return "dir";
> case svn_node_file:
>

Fixed this myself in r34323.

Stefan

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: dev-help_at_subversion.tigris.org
Received on 2008-11-21 23:03:16 CET

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.