Lieven,
I noticed a minor log message typo in r22338. update/c should be update.c
-Hyrum
lgo@tigris.org wrote:
> Author: lgo
> Date: Sat Nov 18 09:37:44 2006
> New Revision: 22338
>
> Log:
> Follow up to r22296: svn_path_local_style only works for directories, don't
> use it on URL's.
>
> Found by: dlr
>
> * subversion/libsvn_client/update/c
Should be a '.'--------------------^
> (svn_client__update_internal): don't convert a URL to local style.
> Modified:
> trunk/subversion/libsvn_client/update.c
>
> Modified: trunk/subversion/libsvn_client/update.c
> URL: http://svn.collab.net/viewvc/svn/trunk/subversion/libsvn_client/update.c?pathrev=22338&r1=22337&r2=22338
> ==============================================================================
> --- trunk/subversion/libsvn_client/update.c (original)
> +++ trunk/subversion/libsvn_client/update.c Sat Nov 18 09:37:44 2006
> @@ -76,7 +76,7 @@
> if (svn_path_is_url(path))
> return svn_error_createf(SVN_ERR_WC_NOT_DIRECTORY, NULL,
> _("Path '%s' is not a directory"),
> - svn_path_local_style(path, pool));
> + path);
>
> /* Use PATH to get the update's anchor and targets and get a write lock */
> SVN_ERR(svn_wc_adm_open_anchor(&adm_access, &dir_access, &target, path,
Received on Sat Nov 18 18:57:40 2006