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 2013/10/15 08:07:05 UTC

svn commit: r1532199 - /subversion/trunk/tools/client-side/svn-bench/null-info-cmd.c

Author: stefan2
Date: Tue Oct 15 06:07:04 2013
New Revision: 1532199

URL: http://svn.apache.org/r1532199
Log:
* develop/trunk/tools/client-side/svn-bench/null-info-cmd.c
  (push_dir_info,
   client_info): update commentary. No functional change.

Modified:
    subversion/trunk/tools/client-side/svn-bench/null-info-cmd.c

Modified: subversion/trunk/tools/client-side/svn-bench/null-info-cmd.c
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/client-side/svn-bench/null-info-cmd.c?rev=1532199&r1=1532198&r2=1532199&view=diff
==============================================================================
--- subversion/trunk/tools/client-side/svn-bench/null-info-cmd.c (original)
+++ subversion/trunk/tools/client-side/svn-bench/null-info-cmd.c Tue Oct 15 06:07:04 2013
@@ -55,9 +55,9 @@
    directory and pushing them at an info-receiver callback.
 
    DEPTH is the depth starting at DIR, even though RECEIVER is never
-   invoked on DIR: if DEPTH is svn_depth_immediates, then invoke
-   RECEIVER on all children of DIR, but none of their children; if
-   svn_depth_files, then invoke RECEIVER on file children of DIR but
+   invoked on DIR: if DEPTH is svn_depth_immediates, then increment
+   *COUNTER on all children of DIR, but none of their children; if
+   svn_depth_files, then increment *COUNTER on file children of DIR but
    not on subdirectories; if svn_depth_infinity, recurse fully.
    DIR is a relpath, relative to the root of RA_SESSION.
 */
@@ -106,6 +106,7 @@ push_dir_info(svn_ra_session_t *ra_sessi
   return SVN_NO_ERROR;
 }
 
+/* Stripped-down version of svn_client_info3 */
 static svn_error_t *
 client_info(const char *abspath_or_url,
             const svn_opt_revision_t *peg_revision,