Author: danielsh
Date: Tue May 28 07:40:45 2013
New Revision: 1486798
URL: http://svn.apache.org/r1486798
Log:
* subversion/libsvn_ra_serf/util.c
(svn_ra_serf__context_run_wait):
Note a possible problem with some apr_status_t arithmetics.
Modified:
subversion/trunk/subversion/libsvn_ra_serf/util.c
Modified: subversion/trunk/subversion/libsvn_ra_serf/util.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_serf/util.c?rev=1486798&r1=1486797&r2=1486798&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_serf/util.c (original)
+++ subversion/trunk/subversion/libsvn_ra_serf/util.c Tue May 28 07:40:45 2013
@@ -776,6 +776,8 @@ svn_ra_serf__context_run_wait(svn_boolea
SVN_ERR(err);
if (status)
{
+ /* ### This omits SVN_WARNING, and possibly relies on the fact that
+ ### MAX(SERF_ERROR_*) < SVN_ERR_BAD_CATEGORY_START? */
if (status >= SVN_ERR_BAD_CATEGORY_START && status < SVN_ERR_LAST)
{
/* apr can't translate subversion errors to text */