Index: subversion/libsvn_repos/reporter.c =================================================================== --- subversion/libsvn_repos/reporter.c (revision 1441178) +++ subversion/libsvn_repos/reporter.c (working copy) @@ -693,12 +693,9 @@ changed with respect to" and "has the same actual contents as". We'll do everything we can to avoid transmitting even an empty text-delta in that case. */ - if (b->ignore_ancestry) - SVN_ERR(svn_repos__compare_files(&changed, b->t_root, t_path, - s_root, s_path, pool)); - else - SVN_ERR(svn_fs_contents_changed(&changed, b->t_root, t_path, s_root, - s_path, pool)); + SVN_ERR(svn_repos__compare_files(&changed, b->t_root, t_path, + s_root, s_path, pool)); + if (!changed) return SVN_NO_ERROR;