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/06/05 17:56:15 UTC

svn commit: r1489935 - /subversion/trunk/subversion/libsvn_subr/io.c

Author: rhuijben
Date: Wed Jun  5 15:56:15 2013
New Revision: 1489935

URL: http://svn.apache.org/r1489935
Log:
Remove duplicated information from a few error messages.

* subversion/libsvn_subr/io.c
  (svn_io_wait_for_cmd): Remove 'exitwhy' from the error message for the cases
    where exitwhy is already completely handled by the specific error message.

Modified:
    subversion/trunk/subversion/libsvn_subr/io.c

Modified: subversion/trunk/subversion/libsvn_subr/io.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/io.c?rev=1489935&r1=1489934&r2=1489935&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_subr/io.c (original)
+++ subversion/trunk/subversion/libsvn_subr/io.c Wed Jun  5 15:56:15 2013
@@ -2808,13 +2808,13 @@ svn_io_wait_for_cmd(apr_proc_t *cmd_proc
            && APR_PROC_CHECK_CORE_DUMP(exitwhy_val))
     return svn_error_createf
       (SVN_ERR_EXTERNAL_PROGRAM, NULL,
-       _("Process '%s' failed (exitwhy %d, signal %d, core dumped)"),
-       cmd, exitwhy_val, exitcode_val);
+       _("Process '%s' failed (signal %d, core dumped)"),
+       cmd, exitcode_val);
   else if (APR_PROC_CHECK_SIGNALED(exitwhy_val))
     return svn_error_createf
       (SVN_ERR_EXTERNAL_PROGRAM, NULL,
-       _("Process '%s' failed (exitwhy %d, signal %d)"),
-       cmd, exitwhy_val, exitcode_val);
+       _("Process '%s' failed (signal %d)"),
+       cmd, exitcode_val);
   else if (! APR_PROC_CHECK_EXIT(exitwhy_val))
     /* Don't really know what happened here. */
     return svn_error_createf