Skip to content

Commit 7c0382b

Browse files
committed
Merge branch 'jc/svn-auth-providers-unusable-at-1.6.12'
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
2 parents ecde699 + c26ddce commit 7c0382b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git-svn.perl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4837,7 +4837,7 @@ ()
48374837

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

0 commit comments

Comments
 (0)