On Tue, Mar 31, 2009 at 16:51, Senthil Kumaran S <senthil_at_collab.net> wrote:
>...
> +++ trunk/subversion/libsvn_client/externals.c  Tue Mar 31 07:51:57 2009     (r36894)
>...
> @@ -813,7 +814,7 @@ handle_external_item_change(const void *
> Â Â Â Â case svn_node_dir:
> Â Â Â Â Â /* The target dir might have multiple components. Â Guarantee
> Â Â Â Â Â Â Â the path leading down to the last component. */
> - Â Â Â Â Â svn_path_split(path, &parent, NULL, ib->iter_pool);
> + Â Â Â Â Â svn_dirent_split(path, &parent, NULL, ib->iter_pool);
You can just use svn_dirent_dirname() since you aren't asking for the basename.
>...
> +++ trunk/subversion/libsvn_client/patch.c    Tue Mar 31 07:51:57 2009     (r36894)
>...
> @@ -535,7 +536,7 @@ merge_file_deleted(svn_wc_adm_access_t *
> Â switch (kind)
> Â Â {
> Â Â case svn_node_file:
> - Â Â Â svn_path_split(mine, &parent_path, NULL, subpool);
> + Â Â Â svn_dirent_split(mine, &parent_path, NULL, subpool);
svn_dirent_dirname()
> Â Â Â SVN_ERR(svn_wc_adm_retrieve(&parent_access, adm_access, parent_path,
> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â subpool));
>
> @@ -776,7 +777,7 @@ merge_dir_deleted(svn_wc_adm_access_t *a
> Â Â Â Â mdb.ctx = patch_b->ctx;
> Â Â Â Â mdb.path_skip = path;
>
> - Â Â Â Â svn_path_split(path, &parent_path, NULL, subpool);
> + Â Â Â Â svn_dirent_split(path, &parent_path, NULL, subpool);
svn_dirent_dirname()
>...
> +++ trunk/subversion/libsvn_repos/authz.c    Tue Mar 31 07:51:57 2009     (r36894)
>...
> @@ -763,7 +764,7 @@ svn_repos_authz_check_access(svn_authz_t
> Â Â Â Â }
>
> Â Â Â /* Work back to the parent path. */
> - Â Â Â svn_path_split(current_path, ¤t_path, NULL, pool);
> + Â Â Â svn_dirent_split(current_path, ¤t_path, NULL, pool);
svn_dirent_dirname()
>...
> +++ trunk/subversion/svn/propedit-cmd.c Tue Mar 31 07:51:57 2009 Â Â Â Â (r36894)
>...
> @@ -226,7 +227,7 @@ svn_cl__propedit(apr_getopt_t *os,
> Â Â Â Â Â Â Â Â Â (SVN_ERR_ENTRY_NOT_FOUND, NULL,
> Â Â Â Â Â Â Â Â Â Â _("'%s' does not appear to be a working copy path"), target);
> Â Â Â Â Â Â Â if (entry->kind == svn_node_file)
> - Â Â Â Â Â Â Â Â svn_path_split(target, &base_dir, NULL, subpool);
> + Â Â Â Â Â Â Â Â svn_dirent_split(target, &base_dir, NULL, subpool);
svn_dirent_dirname()
>...
Cheers,
-g
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=1496596
Received on 2009-03-31 17:07:50 CEST