You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2010/03/04 16:52:20 UTC

svn commit: r919034 - /subversion/trunk/subversion/libsvn_client/cleanup.c

Author: rhuijben
Date: Thu Mar  4 15:52:20 2010
New Revision: 919034

URL: http://svn.apache.org/viewvc?rev=919034&view=rev
Log:
Following up on r919021, commit a few docstrings I forgot to save before
committing.

* subversion/libsvn_client/cleanup.c
  (global): Reinsert page feed I accidentally removed in r919021.
  (repos_info_baton,
   fetch_repos_info): Add docstrings.

Modified:
    subversion/trunk/subversion/libsvn_client/cleanup.c

Modified: subversion/trunk/subversion/libsvn_client/cleanup.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/cleanup.c?rev=919034&r1=919033&r2=919034&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/cleanup.c (original)
+++ subversion/trunk/subversion/libsvn_client/cleanup.c Thu Mar  4 15:52:20 2010
@@ -37,7 +37,7 @@
 
 #include "svn_private_config.h"
 
- 
+
 /*** Code. ***/
 
 svn_error_t *
@@ -56,6 +56,8 @@
   return svn_error_return(err);
 }
 
+
+/* callback baton for fetch_repos_info */
 struct repos_info_baton
 {
   apr_pool_t *pool;
@@ -64,6 +66,8 @@
   const char *last_uuid;
 };
 
+/* svn_wc_upgrade_get_repos_info_t implementation for calling
+   svn_wc_upgrade() from svn_client_upgrade() */
 static svn_error_t *
 fetch_repos_info(const char **repos_root,
                  const char **repos_uuid,