You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Karl Fogel <kf...@galois.collab.net> on 2001/02/07 20:04:54 UTC

Re: CVS update: subversion/subversion/libsvn_fs editor.c Makefile.am

Jim Blandy <ji...@zwingli.cygnus.com> writes:
> kfogel@tigris.org writes:
> >   struct dir_baton
> >   {
> >     struct edit_baton *edit_baton;
> >     struct dir_baton *parent;
> >     svn_string_t *name;
> >   };
> >   
> >   
> >   struct file_baton
> >   {
> >     struct dir_baton *parent;
> >     svn_string_t *name;
> >   };
> 
> By the way, I've just been using `char *' for filenames instead of
> `svn_string_t', since the names must not contain null characters,
> and `char *' is usually a lot simpler to manage.

Hmm, okay.  If it turns out we never end up using it as an argument to
the svn_path_*() functions, I'll probably switch it to char *.
Thanks!

-K