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 2011/04/06 14:08:57 UTC

svn commit: r1089418 - /subversion/trunk/subversion/libsvn_wc/update_editor.c

Author: rhuijben
Date: Wed Apr  6 12:08:56 2011
New Revision: 1089418

URL: http://svn.apache.org/viewvc?rev=1089418&view=rev
Log:
* subversion/libsvn_wc/update_editor.c
  (add_directory, add_file): Following up on r1089416, register the not-present
    node with the target revision.

Modified:
    subversion/trunk/subversion/libsvn_wc/update_editor.c

Modified: subversion/trunk/subversion/libsvn_wc/update_editor.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/update_editor.c?rev=1089418&r1=1089417&r2=1089418&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/update_editor.c (original)
+++ subversion/trunk/subversion/libsvn_wc/update_editor.c Wed Apr  6 12:08:56 2011
@@ -2171,7 +2171,7 @@ add_directory(const char *path,
                                                    db->new_relpath,
                                                    eb->repos_root,
                                                    eb->repos_uuid,
-                                                   pb->old_revision,
+                                                   *eb->target_revision,
                                                    svn_wc__db_kind_dir,
                                                    NULL, NULL,
                                                    pool));
@@ -3089,7 +3089,7 @@ add_file(const char *path,
                                                    fb->new_relpath,
                                                    eb->repos_root,
                                                    eb->repos_uuid,
-                                                   pb->old_revision,
+                                                   *eb->target_revision,
                                                    svn_wc__db_kind_file,
                                                    NULL, NULL,
                                                    pool));