Merge branch 'master' of git://repo.or.cz/git/fastimport

* 'master' of git://repo.or.cz/git/fastimport:
  fast-import: size_t vs ssize_t
  fix importing of subversion tars
  Don't repack existing objects in fast-import
This commit is contained in:
Junio C Hamano
2007-04-24 22:02:38 -07:00
2 changed files with 15 additions and 2 deletions

View File

@ -64,7 +64,12 @@ foreach my $tar_file (@ARGV)
}
print FI "\n";
my $path = "$prefix$name";
my $path;
if ($prefix) {
$path = "$prefix/$name";
} else {
$path = "$name";
}
$files{$path} = [$next_mark++, $mode];
$commit_time = $mtime if $mtime > $commit_time;