# # # patch "rcs_import.cc" # from [c1688a22926184be0f607cf7ef2b679c48c96f66] # to [0c2323a0b592c9274762ddb169221f69564f9a1b] # ============================================================ --- rcs_import.cc c1688a22926184be0f607cf7ef2b679c48c96f66 +++ rcs_import.cc 0c2323a0b592c9274762ddb169221f69564f9a1b @@ -1181,8 +1181,10 @@ process_rcs_branch(string const & begin_ cvs_event_ptr tag_event = boost::static_pointer_cast( shared_ptr( - new cvs_event_tag(curr_commit->path, curr_commit->adj_time, + new cvs_event_tag(curr_commit->path, + curr_commit->given_time, tag))); + tag_event->adj_time = curr_commit->adj_time + 1; add_dependency(tag_event, curr_commit); cvs_blob_index bi = cvs.append_event(tag_event); @@ -1258,7 +1260,8 @@ process_rcs_branch(string const & begin_ boost::static_pointer_cast( shared_ptr( new cvs_event_branch(curr_commit->path, bname, - curr_commit->adj_time))); + curr_commit->given_time))); + branch_event->adj_time = curr_commit->adj_time + 1; // Normal branches depend on the current commit. But vendor // branches - appearing in reversed order - don't depend on