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 2011/10/20 16:00:05 UTC

svn commit: r1186815 - /subversion/trunk/subversion/svn/changelist-cmd.c

Author: julianfoad
Date: Thu Oct 20 14:00:04 2011
New Revision: 1186815

URL: http://svn.apache.org/viewvc?rev=1186815&view=rev
Log:
* subversion/svn/changelist-cmd.c
  (svn_cl__changelist): Fix error message wording. A follow-up to r1185746.

Modified:
    subversion/trunk/subversion/svn/changelist-cmd.c

Modified: subversion/trunk/subversion/svn/changelist-cmd.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/changelist-cmd.c?rev=1186815&r1=1186814&r2=1186815&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/changelist-cmd.c (original)
+++ subversion/trunk/subversion/svn/changelist-cmd.c Thu Oct 20 14:00:04 2011
@@ -129,15 +129,15 @@ svn_cl__changelist(apr_getopt_t *os,
       for (i = 0; i < errors->nelts; i++)
         {
           apr_status_t status = APR_ARRAY_IDX(errors, i, apr_status_t);
-          
+
           if (status == SVN_ERR_WC_PATH_NOT_FOUND)
             err = svn_error_quick_wrap(err,
-                                       _("Could not display changelists of "
+                                       _("Could not set changelists on "
                                          "all targets because some targets "
                                          "don't exist"));
           else if (status == SVN_ERR_UNVERSIONED_RESOURCE)
             err = svn_error_quick_wrap(err,
-                                       _("Could not display changelists of "
+                                       _("Could not set changelists on "
                                          "all targets because some targets "
                                          "are not versioned"));
         }