From: Eric Wong Date: Tue, 18 Sep 2012 00:09:31 +0000 (+0000) Subject: git-svn: use path accessor for Git::SVN objects X-Git-Tag: v1.8.0-rc1~6 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=f3045919d148b443158d2b64a5a73375286514c1;p=git-core%2Fgit.git git-svn: use path accessor for Git::SVN objects The accessors should improve maintainability and enforce consistent access to Git::SVN objects. Signed-off-by: Eric Wong Reviewed-by: Jonathan Nieder --- diff --git a/git-svn.perl b/git-svn.perl index 0d77ffb0b..bd5266c86 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -1314,7 +1314,7 @@ sub get_svnprops { $path = $cmd_dir_prefix . $path; fatal("No such file or directory: $path") unless -e $path; my $is_dir = -d $path ? 1 : 0; - $path = join_paths($gs->{path}, $path); + $path = join_paths($gs->path, $path); # canonicalize the path (otherwise libsvn will abort or fail to # find the file) diff --git a/perl/Git/SVN/Ra.pm b/perl/Git/SVN/Ra.pm index 90ec30bff..049c97bfa 100644 --- a/perl/Git/SVN/Ra.pm +++ b/perl/Git/SVN/Ra.pm @@ -416,7 +416,7 @@ sub gs_fetch_loop_common { } $SVN::Error::handler = $err_handler; - my %exists = map { $_->{path} => $_ } @$gsv; + my %exists = map { $_->path => $_ } @$gsv; foreach my $r (sort {$a <=> $b} keys %revs) { my ($paths, $logged) = @{$revs{$r}};