You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ar...@apache.org on 2010/09/20 12:14:11 UTC

svn commit: r998863 - /subversion/trunk/subversion/svnrdump/dump_editor.c

Author: artagnon
Date: Mon Sep 20 10:14:11 2010
New Revision: 998863

URL: http://svn.apache.org/viewvc?rev=998863&view=rev
Log:
* subversion/svnrdump/dump_editor.c
  (open_root): Followup r998859 to make the LDR_DBG output the
  constructed the root_baton at the end of open_root.

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

Modified: subversion/trunk/subversion/svnrdump/dump_editor.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svnrdump/dump_editor.c?rev=998863&r1=998862&r2=998863&view=diff
==============================================================================
--- subversion/trunk/subversion/svnrdump/dump_editor.c (original)
+++ subversion/trunk/subversion/svnrdump/dump_editor.c Mon Sep 20 10:14:11 2010
@@ -322,7 +322,6 @@ open_root(void *edit_baton,
   /* Allocate a special pool for the edit_baton to avoid pool
      lifetime issues */
 
-  LDR_DBG(("open_root\n"));
   eb->pool = svn_pool_create(pool);
   eb->props = apr_hash_make(eb->pool);
   eb->deleted_props = apr_hash_make(eb->pool);
@@ -330,6 +329,8 @@ open_root(void *edit_baton,
 
   *root_baton = make_dir_baton(NULL, NULL, SVN_INVALID_REVNUM,
                                edit_baton, NULL, FALSE, pool);
+  LDR_DBG(("open_root %p\n", *root_baton));
+
   return SVN_NO_ERROR;
 }