You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2012/12/28 17:31:54 UTC

svn commit: r1426571 - /subversion/trunk/tools/server-side/svnauthz-validate.c

Author: breser
Date: Fri Dec 28 16:31:53 2012
New Revision: 1426571

URL: http://svn.apache.org/viewvc?rev=1426571&view=rev
Log:
Really fix the bracketing on svnauthz-validate's usage.

* tools/server-side/svnauthz-validate.c
  (usage): --path and --repository should have another set of backets.

Suggested by: danielsh

Modified:
    subversion/trunk/tools/server-side/svnauthz-validate.c

Modified: subversion/trunk/tools/server-side/svnauthz-validate.c
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/server-side/svnauthz-validate.c?rev=1426571&r1=1426570&r2=1426571&view=diff
==============================================================================
--- subversion/trunk/tools/server-side/svnauthz-validate.c (original)
+++ subversion/trunk/tools/server-side/svnauthz-validate.c Fri Dec 28 16:31:53 2012
@@ -45,7 +45,7 @@ enum {
 static int
 usage(const char *argv0)
 {
-  printf("Usage:  %s [--username USER] [--path FSPATH] [--repository REPOS_NAME] FILE\n\n", argv0);
+  printf("Usage:  %s [--username USER] [[--path FSPATH] [--repository REPOS_NAME]] FILE\n\n", argv0);
   printf("Loads the authz file at FILE and validates its syntax.\n"
          "Optionally prints the access available to USER for FSPATH in\n"
          "repository with authz name REPOS_NAME.  If FSPATH is omitted, reports\n"