Hi,
This is follow-up to r1141600. This patch updates a deprecated function
call in libsvn_repos/repos.c.
Attaching the patch and log.
Thanks & Regards,
Vijayaguru
Index: subversion/libsvn_repos/repos.c
===================================================================
--- subversion/libsvn_repos/repos.c (revision 1141836)
+++ subversion/libsvn_repos/repos.c (working copy)
@@ -1523,7 +1523,8 @@
SVN_ERR(svn_fs_revision_root(&root, repos->fs, 0, pool));
APR_ARRAY_PUSH(paths, const char *) = "";
- err = svn_fs_get_mergeinfo(&ignored, root, paths, FALSE, FALSE, pool);
+ err = svn_fs_get_mergeinfo2(&ignored, root, paths, FALSE,
+ FALSE, FALSE, pool);
if (err)
{
Update a deprecated function call. (Follow-up to r1141600.)
* subversion/libsvn_repos/repos.c
(svn_repos_has_capability): Use svn_fs_get_mergeinfo2().
Patch by: Vijayaguru G <vijay{_AT_}collab.net>
Inspired by: hwright