Skip to content

Commit c26ddce

Browse files
committed
git-svn: platform auth providers are working only on 1.6.15 or newer
Matthijs Kooijman reports that the cut-off point 082afee (git-svn: use platform specific auth providers, 2012-04-26) set at 1.6.12 to use this feature safely was incorrect, and it is 1.6.15 instead: http://svn.apache.org/repos/asf/subversion/trunk/CHANGES Version 1.6.15 * improve some swig parameter mapping (r984565, r1035745) Signed-off-by: Junio C Hamano <[email protected]> Acked-by: Eric Wong <[email protected]>
1 parent f760c90 commit c26ddce

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
@@ -5481,7 +5481,7 @@ ()
54815481

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

0 commit comments

Comments
 (0)