On Thursday 04 August 2005 18:36, Philip Martin wrote:
[snip]
> It's always worth looking at these EBCDIC changes as they sometimes
> reveal bugs in the non-EBCDIC code. In this case I think both trunk
> and the EBCDIC branch should be:
>
> Index: subversion/libsvn_subr/io.c
> ===================================================================
> --- subversion/libsvn_subr/io.c (revision 15587)
> +++ subversion/libsvn_subr/io.c (working copy)
> @@ -715,7 +715,7 @@
> /* Prevent infinite recursion by filtering off our
> newly created destination path. */
> if (strcmp (src, dst_parent) == 0
> - && strcmp (this_entry.name, dst_basename) == 0)
> + && strcmp (entryname_utf8, dst_basename) == 0)
> continue;
>
> SVN_ERR (svn_io_copy_dir_recursively
You are correct as usual Philip. :-) I've committed this change to trunk in
r15672. I'll leave it to Paul to update the EBCDIC branch.
-John
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Thu Aug 11 02:36:12 2005