Author: hwright
Date: Thu Jan 26 14:58:32 2012
New Revision: 1236214
URL: http://svn.apache.org/viewvc?rev=1236214&view=rev
Log:
Ev2 shims: Use the correct base revision when opening a directory.
Current number of Ev2 test failures: 21
* subversion/libsvn_delta/compat.c
(drive_tree): Use the operation's base revision, not the parent's.
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=1236214&r1=1236213&r2=1236214&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_delta/compat.c (original)
+++ subversion/trunk/subversion/libsvn_delta/compat.c Thu Jan 26 14:58:32 2012
@@ -1411,8 +1411,7 @@ drive_tree(struct operation *op,
{
/* Open or create our baton. */
if (op->operation == OP_OPEN || op->operation == OP_PROPSET)
- SVN_ERR(editor->open_directory(path, parent_op->baton,
- parent_op->base_revision,
+ SVN_ERR(editor->open_directory(path, parent_op->baton,
op->base_revision,
scratch_pool, &op->baton));
else if (op->operation == OP_ADD || op->operation == OP_REPLACE)