Changeset 311
- Timestamp:
- 05/13/2007 08:41:43 PM
- Files:
-
- trunk/script/Vss2Svn/Dumpfile.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/script/Vss2Svn/Dumpfile.pm
r310 r311 409 409 } 410 410 411 my $success = $self->{repository}->exists_parent ($newpath);411 my $success = $self->{repository}->exists_parent($itempath); 412 412 if(!defined($success)) { 413 $self->add_error("Attempt to move item '$ itempath' to '$newpath' at "413 $self->add_error("Attempt to move item '$oldpath' to '$itempath' at " 414 414 . "revision $data->{revision_id}, but path consistency failure at dest"); 415 415 return 0; … … 417 417 elsif ($success == 0) { 418 418 $self->add_error("Parent path missing while trying to move " 419 . "item '$ itempath' to '$newpath' at "419 . "item '$oldpath' to '$itempath' at " 420 420 . "revision $data->{revision_id}: adding missing parents"); 421 $self->_create_svn_path ($nodes, $ newpath);421 $self->_create_svn_path ($nodes, $itempath); 422 422 } 423 423
