You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2014/02/27 13:49:52 UTC

svn commit: r1572540 - /subversion/trunk/subversion/svn/svn.c

Author: stsp
Date: Thu Feb 27 12:49:52 2014
New Revision: 1572540

URL: http://svn.apache.org/r1572540
Log:
* subversion/svn/svn.c
  (svn_cl__options): Override the --remove option description for 'svn auth'
   instead of tweaking the global description which belongs to 'svn cl'.

Suggested by: danielsh

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

Modified: subversion/trunk/subversion/svn/svn.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/svn.c?rev=1572540&r1=1572539&r2=1572540&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/svn.c (original)
+++ subversion/trunk/subversion/svn/svn.c Thu Feb 27 12:49:52 2014
@@ -280,7 +280,7 @@ const apr_getopt_option_t svn_cl__option
                        "ARG may be one of 'LF', 'CR', 'CRLF'")},
   {"limit",         'l', 1, N_("maximum number of log entries")},
   {"no-unlock",     opt_no_unlock, 0, N_("don't unlock the targets")},
-  {"remove",         opt_remove, 0, N_("remove changelist association or auth credential")},
+  {"remove",         opt_remove, 0, N_("remove changelist association")},
   {"changelist",    opt_changelist, 1,
                     N_("operate only on members of changelist ARG")},
   {"keep-changelists", opt_keep_changelists, 0,
@@ -468,7 +468,10 @@ const svn_opt_subcommand_desc2_t svn_cl_
     "  Note that wildcards will usually need to be quoted or escaped on the\n"
     "  command line because many command shells will interfere by trying to\n"
     "  expand them.\n"),
-    { opt_remove, opt_show_passwords } },
+    { opt_remove, opt_show_passwords },
+    { {opt_remove, N_("remove matching authentication credentials")} }
+    
+    },
 
   { "blame", svn_cl__blame, {"praise", "annotate", "ann"}, N_
     ("Output the content of specified files or\n"