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

r10616

From: Peter N. Lundblad <peter_at_famlundblad.se>
Date: 2004-08-14 22:57:36 CEST

Hi,

In r10616 we have:

Index: ../svn/subversion/libsvn_subr/io.c
===================================================================
--- ../svn/subversion/libsvn_subr/io.c (revision 10615)
+++ ../svn/subversion/libsvn_subr/io.c (revision 10616)
@@ -648,11 +648,7 @@

   /* Create the new directory. */
   /* ### TODO: copy permissions? */
- status = apr_dir_make (dst_path_apr, APR_OS_DEFAULT, pool);
- if (status)
- return svn_error_createf (status, NULL,
- "Unable to create directory '%s'",
- dst_path);
+ SVN_ERR (svn_io_dir_make (dst_path_apr, APR_OS_DEFAULT, pool));

   /* Loop over the dirents in SRC. ('.' and '..' are auto-excluded) */
   SVN_ERR (svn_io_dir_open (&this_dir, src, subpool));

It isn't viaible here, but dst_path_apr is converted from the UTF-8
encoded dst_path to the locale encoding. dst_path_apr should be
eliminated.

//Peter

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Aug 14 22:44:43 2004

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.