You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2012/03/24 18:20:28 UTC

svn commit: r1304867 - /subversion/trunk/subversion/libsvn_ra_serf/sb_bucket.c

Author: danielsh
Date: Sat Mar 24 17:20:28 2012
New Revision: 1304867

URL: http://svn.apache.org/viewvc?rev=1304867&view=rev
Log:
* subversion/libsvn_ra_serf/sb_bucket.c
  (svn_ra_serf__copy_into_spillbuf): Mark an error message for translation.

Modified:
    subversion/trunk/subversion/libsvn_ra_serf/sb_bucket.c

Modified: subversion/trunk/subversion/libsvn_ra_serf/sb_bucket.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_serf/sb_bucket.c?rev=1304867&r1=1304866&r2=1304867&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_serf/sb_bucket.c (original)
+++ subversion/trunk/subversion/libsvn_ra_serf/sb_bucket.c Sat Mar 24 17:20:28 2012
@@ -61,7 +61,7 @@ svn_ra_serf__copy_into_spillbuf(svn_spil
       status = serf_bucket_read(bkt, SERF_READ_ALL_AVAIL, &data, &len);
 
       if (status != APR_SUCCESS && status != APR_EOF)
-        return svn_error_wrap_apr(status, "Failed to read the request");
+        return svn_error_wrap_apr(status, _("Failed to read the request"));
 
       SVN_ERR(svn_spillbuf__write(*spillbuf, data, len, scratch_pool));