Changeset 301
- Timestamp:
- 02/13/2007 03:16:45 PM
- Files:
-
- trunk/script/Vss2Svn/Dumpfile.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/script/Vss2Svn/Dumpfile.pm
r300 r301 368 368 # need to copy all internal information about the ancestor to the child. 369 369 if (defined $data->{info}) { 370 $gVersion{$data->{physname}} = $gVersion{$data->{info}}; 371 } 370 # only copy versions, that are common between the branch source and the branch. 371 my $copy_version=$data->{version}; 372 while(--$copy_version > 0) { 373 if (defined $gVersion{$data->{info}}->[$copy_version]) { 374 $gVersion{$data->{physname}}->[$copy_version] = 375 $gVersion{$data->{info}}->[$copy_version]; 376 } 377 } 378 } 372 379 373 380 # # if the file is copied later, we need to track, the revision of this branch
