You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2015/05/27 17:54:10 UTC

svn commit: r1682066 - /subversion/branches/move-tracking-2/subversion/svnmover/svnmover.c

Author: julianfoad
Date: Wed May 27 15:54:09 2015
New Revision: 1682066

URL: http://svn.apache.org/r1682066
Log:
On the 'move-tracking-2' branch: Display error messages in full in
'svnmover' interactive mode, not as warnings which are abbreviated.

* subversion/svnmover/svnmover.c
  (sub_main): Display error messages in full (with error stack trace) in
    interactive mode.

Modified:
    subversion/branches/move-tracking-2/subversion/svnmover/svnmover.c

Modified: subversion/branches/move-tracking-2/subversion/svnmover/svnmover.c
URL: http://svn.apache.org/viewvc/subversion/branches/move-tracking-2/subversion/svnmover/svnmover.c?rev=1682066&r1=1682065&r2=1682066&view=diff
==============================================================================
--- subversion/branches/move-tracking-2/subversion/svnmover/svnmover.c (original)
+++ subversion/branches/move-tracking-2/subversion/svnmover/svnmover.c Wed May 27 15:54:09 2015
@@ -2743,7 +2743,8 @@ sub_main(int *exit_code, int argc, const
                                          " --force-interactive option"));
           if (interactive_actions)
             {
-              svn_handle_warning2(stderr, err, "svnmover: ");
+              /* Display the error, but don't quit */
+              svn_handle_error2(err, stderr, FALSE, "svnmover: ");
               svn_error_clear(err);
             }
           else