Author: rhuijben
Date: Fri May 13 09:13:49 2011
New Revision: 1102619
URL: http://svn.apache.org/viewvc?rev=1102619&view=rev
Log:
* subversion/libsvn_client/externals.c
(handle_external_item_change_wrapper): Following up on r1102502, revert
accidental change by temporary turning the code off in maintainer builds.
Modified:
subversion/trunk/subversion/libsvn_client/externals.c
Modified: subversion/trunk/subversion/libsvn_client/externals.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/externals.c?rev=1102619&r1=1102618&r2=1102619&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/externals.c (original)
+++ subversion/trunk/subversion/libsvn_client/externals.c Fri May 13 09:13:49
2011
@@ -1019,7 +1019,11 @@ handle_external_item_change_wrapper(cons
target_abspath,
old_item, new_item, scratch_pool);
- /*if (err && err->apr_err != SVN_ERR_CANCELLED)
+ /* ### This #ifndef should probably be removed once the externals handling
+ has stabilized, but currently it catches some errors in the test suite
+ that are ignored if this code is enabled */
+#ifndef SVN_DEBUG
+ if (err && err->apr_err != SVN_ERR_CANCELLED)
{
if (ib->ctx->notify_func2)
{
@@ -1033,7 +1037,8 @@ handle_external_item_change_wrapper(cons
}
svn_error_clear(err);
return SVN_NO_ERROR;
- }*/
+ }
+#endif
return svn_error_return(err);
}