You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by je...@apache.org on 2012/06/13 08:15:35 UTC

svn commit: r1349651 - /subversion/trunk/subversion/libsvn_ra_serf/update.c

Author: jerenkrantz
Date: Wed Jun 13 06:15:35 2012
New Revision: 1349651

URL: http://svn.apache.org/viewvc?rev=1349651&view=rev
Log:
Fix authz test #14.

* subversion/libsvn_ra_serf/update.c
  (finish_report): Check new server_error structure for a pending error.

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

Modified: subversion/trunk/subversion/libsvn_ra_serf/update.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_serf/update.c?rev=1349651&r1=1349650&r2=1349651&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_serf/update.c (original)
+++ subversion/trunk/subversion/libsvn_ra_serf/update.c Wed Jun 13 06:15:35 2012
@@ -2429,6 +2429,11 @@ finish_report(void *report_baton,
       err = sess->pending_error;
       sess->pending_error = SVN_NO_ERROR;
 
+      if (!err && handler->done && handler->server_error)
+        {
+          err = handler->server_error->error;
+        }
+
       if (APR_STATUS_IS_TIMEUP(status))
         {
           svn_error_clear(err);