Skip to content

Commit

Permalink
Merge branch 'jc/svn-auth-providers-unusable-at-1.6.12'
Browse files Browse the repository at this point in the history
Regression fix for people with libsvn between 1.6.12 and 1.6.15, on
which we tried to use the non-working platform auth providers.

* jc/svn-auth-providers-unusable-at-1.6.12:
  git-svn: platform auth providers are working only on 1.6.15 or newer
  • Loading branch information
Junio C Hamano committed Jun 7, 2012
2 parents ecde699 + c26ddce commit 7c0382b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-svn.perl
Original file line number Diff line number Diff line change
Expand Up @@ -4837,7 +4837,7 @@ ()

# earlier 1.6.x versions would segfault, and <= 1.5.x didn't have
# this function
if (::compare_svn_version('1.6.12') > 0) {
if (::compare_svn_version('1.6.15') >= 0) {
my $config = SVN::Core::config_get_config($config_dir);
my ($p, @a);
# config_get_config returns all config files from
Expand Down

0 comments on commit 7c0382b

Please sign in to comment.