You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2011/02/19 11:08:55 UTC

svn commit: r1072290 - /subversion/trunk/subversion/libsvn_ra_neon/commit.c

Author: stefan2
Date: Sat Feb 19 10:08:55 2011
New Revision: 1072290

URL: http://svn.apache.org/viewvc?rev=1072290&view=rev
Log:
Unbreak the ra_neon build.

* subversion/libsvn_ra_neon/commit.c
  (commit_apply_txdelta): switch back to svn_txdelta_to_svndiff2()

Modified:
    subversion/trunk/subversion/libsvn_ra_neon/commit.c

Modified: subversion/trunk/subversion/libsvn_ra_neon/commit.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_neon/commit.c?rev=1072290&r1=1072289&r2=1072290&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_neon/commit.c (original)
+++ subversion/trunk/subversion/libsvn_ra_neon/commit.c Sat Feb 19 10:08:55 2011
@@ -1215,8 +1215,7 @@ commit_apply_txdelta(void *file_baton,
   stream = svn_stream_create(baton, pool);
   svn_stream_set_write(stream, commit_stream_write);
 
-  svn_txdelta_to_svndiff3(handler, handler_baton, stream, 0,
-                          dav_svn__get_compression_level(), pool);
+  svn_txdelta_to_svndiff2(handler, handler_baton, stream, 0, pool);
 
   /* Add this path to the valid targets hash. */
   add_valid_target(file->cc, file->rsrc->local_path, svn_nonrecursive);