You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2015/12/07 14:56:17 UTC

svn commit: r1718357 - /subversion/branches/ra-git/subversion/libsvn_ra_git/session.c

Author: rhuijben
Date: Mon Dec  7 13:56:17 2015
New Revision: 1718357

URL: http://svn.apache.org/viewvc?rev=1718357&view=rev
Log:
On the ra-git branch: Remove yet another call that doesn't go via the vtable.

Found by: philipm

* subversion/libsvn_ra_git/session.c
  (ra_git_get_file_revs): Update caller.

Modified:
    subversion/branches/ra-git/subversion/libsvn_ra_git/session.c

Modified: subversion/branches/ra-git/subversion/libsvn_ra_git/session.c
URL: http://svn.apache.org/viewvc/subversion/branches/ra-git/subversion/libsvn_ra_git/session.c?rev=1718357&r1=1718356&r2=1718357&view=diff
==============================================================================
--- subversion/branches/ra-git/subversion/libsvn_ra_git/session.c (original)
+++ subversion/branches/ra-git/subversion/libsvn_ra_git/session.c Mon Dec  7 13:56:17 2015
@@ -457,7 +457,8 @@ ra_git_get_file_revs(svn_ra_session_t *s
   SVN_ERR(ensure_local_session(session, pool));
 
   return svn_error_trace(
-    svn_ra_get_file_revs2(sess->local_session, path, start, end,
+    sess->local_session->vtable->get_file_revs(
+                          sess->local_session, path, start, end,
                           include_merged_revisions,
                           handler, handler_baton, pool));
 }