You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2013/01/03 19:23:53 UTC

svn commit: r1428528 - /subversion/trunk/subversion/libsvn_client/diff_local.c

Author: rhuijben
Date: Thu Jan  3 18:23:53 2013
New Revision: 1428528

URL: http://svn.apache.org/viewvc?rev=1428528&view=rev
Log:
* subversion/libsvn_client/diff_local.c
  (get_props): Don't ignore upgrade required errors here, as that makes us
    produce different results on whether this is a wc or an old wc, and that
    is a good reason for producing at least a warning.

Modified:
    subversion/trunk/subversion/libsvn_client/diff_local.c

Modified: subversion/trunk/subversion/libsvn_client/diff_local.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/diff_local.c?rev=1428528&r1=1428527&r2=1428528&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/diff_local.c (original)
+++ subversion/trunk/subversion/libsvn_client/diff_local.c Thu Jan  3 18:23:53 2013
@@ -66,8 +66,7 @@ get_props(apr_hash_t **props,
   if (err)
     {
       if (err->apr_err == SVN_ERR_WC_PATH_NOT_FOUND ||
-          err->apr_err == SVN_ERR_WC_NOT_WORKING_COPY ||
-          err->apr_err == SVN_ERR_WC_UPGRADE_REQUIRED)
+          err->apr_err == SVN_ERR_WC_NOT_WORKING_COPY)
         {
           svn_error_clear(err);
           *props = apr_hash_make(result_pool);