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

[PATCH] Follow-up to r879452.

From: Noorul Islam K M <noorul_at_collab.net>
Date: Tue, 07 Dec 2010 15:32:17 +0530

Log
[[[

Follow-up to r879452.

* subversion/libsvn_ra_local/ra_plugin.c
  (svn_ra_local__obliterate_path_rev): Replace call to svn_path_join()
    with svn_dirent_join() function.

Patch by: Noorul Islam K M <noorul{_AT_}collab.net>
]]]

Thanks and Regards
Noorul

Index: subversion/libsvn_ra_local/ra_plugin.c
===================================================================
--- subversion/libsvn_ra_local/ra_plugin.c (revision 1042948)
+++ subversion/libsvn_ra_local/ra_plugin.c (working copy)
@@ -1453,7 +1453,7 @@
   /* A username is absolutely required to obliterate anything. */
   SVN_ERR(get_username(session, pool));
 
- path = svn_path_join(sess->fs_path->data, path, pool);
+ path = svn_dirent_join(sess->fs_path->data, path, pool);
   SVN_ERR(svn_repos__obliterate_path_rev(sess->repos,
                                          sess->username,
                                          revision,
Received on 2010-12-07 11:04:56 CET

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.