You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2012/09/04 17:48:11 UTC

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

Author: danielsh
Date: Tue Sep  4 15:48:11 2012
New Revision: 1380694

URL: http://svn.apache.org/viewvc?rev=1380694&view=rev
Log:
* tools/server-side/svnauthz-validate.c
  (main): Print just "no" / "r" / "rw" to make parsing easier.

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=1380694&r1=1380693&r2=1380694&view=diff
==============================================================================
--- subversion/trunk/tools/server-side/svnauthz-validate.c (original)
+++ subversion/trunk/tools/server-side/svnauthz-validate.c Tue Sep  4 15:48:11 2012
@@ -86,12 +86,9 @@ main(int argc, const char **argv)
                                            svn_authz_read, &read_access,
                                            pool);
       if (!err)
-        printf("user '%s' has %s access to '%s'%s%s\n",
-               user,
+        printf("%s\n",
                write_access ? "rw" : read_access ? "r" : "no",
-               path,
-               repos[0] ? "in repository " : "",
-               repos);
+               );
     }
 
   svn_pool_destroy(pool);