- Timestamp:
- Sep 3, 2013 7:33:08 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/apps/svnsync-vbox/main.c
r48252 r48253 1242 1242 svn_boolean_t prev_process_default, process_default; 1243 1243 svn_boolean_t prev_process_recursive, process_recursive; 1244 svn_boolean_t added_ancestor_dir; /* This dir or its ancestors were added in this changeset */1245 1244 svn_boolean_t ignore_everything; /* Ignore operations on this dir/file. */ 1246 1245 svn_boolean_t ignore_everything_rec; /* Recursively ignore operations on subdirs/files. */ … … 1611 1610 { 1612 1611 /* Genuinely add a new dir, referring to other revision/name if known. */ 1613 b->added_ancestor_dir = TRUE;1614 1612 SVN_ERR(eb->wrapped_editor->add_directory(path, pb->wrapped_node_baton, 1615 1613 copyfrom_path, … … 1677 1675 1678 1676 DX(fprintf(stderr, "open_directory %s\n", path);) 1679 db->added_ancestor_dir = pb->added_ancestor_dir;1680 1677 db->ignore_everything_rec = pb->ignore_everything_rec; 1681 1678 db->ignore_everything = db->ignore_everything_rec; … … 1688 1685 SVN_ERR(svn_ra_check_path(eb->from_session_prop, STRIP_LEADING_SLASH(path), 1689 1686 eb->current-1, &nodekind, pool)); 1690 dir_added_this_changeset = db->added_ancestor_dir 1691 || (nodekind != svn_node_dir); 1687 dir_added_this_changeset = (nodekind != svn_node_dir); 1692 1688 if (!dir_added_this_changeset) 1693 1689 { … … 1761 1757 /* Directory appears due to changes to the process settings. */ 1762 1758 eb->changeset_live = TRUE; 1763 db->added_ancestor_dir = TRUE;1764 1759 SVN_ERR(eb->wrapped_editor->add_directory(path, pb->wrapped_node_baton, 1765 1760 NULL, SVN_IGNORED_REVNUM, pool,
Note:
See TracChangeset
for help on using the changeset viewer.