You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by cm...@apache.org on 2011/05/23 20:18:04 UTC

svn commit: r1126629 - /subversion/trunk/subversion/svnrdump/load_editor.c

Author: cmpilato
Date: Mon May 23 18:18:04 2011
New Revision: 1126629

URL: http://svn.apache.org/viewvc?rev=1126629&view=rev
Log:
* subversion/svnrdump/load_editor.c
  (struct parse_baton): Document some baton members.

Modified:
    subversion/trunk/subversion/svnrdump/load_editor.c

Modified: subversion/trunk/subversion/svnrdump/load_editor.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svnrdump/load_editor.c?rev=1126629&r1=1126628&r2=1126629&view=diff
==============================================================================
--- subversion/trunk/subversion/svnrdump/load_editor.c (original)
+++ subversion/trunk/subversion/svnrdump/load_editor.c Mon May 23 18:18:04 2011
@@ -51,11 +51,19 @@
  */
 struct parse_baton
 {
+  /* Commit editor and baton used to transfer loaded revisions to
+     the target repository. */
   const svn_delta_editor_t *commit_editor;
   void *commit_edit_baton;
+
+  /* RA session(s) for committing to the target repository. */
   svn_ra_session_t *session;
   svn_ra_session_t *aux_session;
+
+  /* UUID found in the dumpstream, if any; NULL otherwise. */
   const char *uuid;
+
+  /* Root URL of the target repository. */
   const char *root_url;
 };