You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ph...@apache.org on 2014/04/09 11:24:10 UTC

svn commit: r1585917 - /subversion/trunk/subversion/svn/notify.c

Author: philip
Date: Wed Apr  9 09:24:10 2014
New Revision: 1585917

URL: http://svn.apache.org/r1585917
Log:
* subversion/svn/notify.c
  (notify): Use generic external error rather than SVN_ERR_BASE
   when extending an external error.

Modified:
    subversion/trunk/subversion/svn/notify.c

Modified: subversion/trunk/subversion/svn/notify.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/notify.c?rev=1585917&r1=1585916&r2=1585917&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/notify.c (original)
+++ subversion/trunk/subversion/svn/notify.c Wed Apr  9 09:24:10 2014
@@ -700,7 +700,7 @@ notify(void *baton, const svn_wc_notify_
       else
         {
           svn_error_t *warn_err =
-            svn_error_createf(SVN_ERR_BASE, NULL,
+            svn_error_createf(SVN_ERR_CL_ERROR_PROCESSING_EXTERNALS, NULL,
                               _("Error handling externals definition for '%s':"),
                               path_local);
           svn_handle_warning2(stderr, warn_err, "svn: ");