Author: hwright
Date: Fri Jan 13 17:54:42 2012
New Revision: 1231209
URL: http://svn.apache.org/viewvc?rev=1231209&view=rev
Log:
Ev2 shims: Fix a bug in how revisions are passed through.
Current number of Ev2 test failures: 74
* subversion/libsvn_delta/compat.c
(drive_tree): Use our revision, not our parent's base revision.
Modified:
subversion/trunk/subversion/libsvn_delta/compat.c
Modified: subversion/trunk/subversion/libsvn_delta/compat.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_delta/compat.c?rev=1231209&r1=1231208&r2=1231209&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_delta/compat.c (original)
+++ subversion/trunk/subversion/libsvn_delta/compat.c Fri Jan 13 17:54:42 2012
@@ -1455,8 +1455,7 @@ drive_tree(struct operation *op,
/* Open or create our baton. */
if (op->operation == OP_OPEN || op->operation == OP_PROPSET)
- SVN_ERR(editor->open_file(path, parent_op->baton,
- parent_op->base_revision,
+ SVN_ERR(editor->open_file(path, parent_op->baton, op->base_revision,
scratch_pool, &file_baton));
else if (op->operation == OP_ADD || op->operation == OP_REPLACE)