Browse Source

MySQL versions before 5.0 still use cygwin, no need

to convert path
pull/73/head
msvensson@pilot.blaudden 19 years ago
parent
commit
c1f8e7f913
  1. 6
      mysql-test/lib/mtr_misc.pl

6
mysql-test/lib/mtr_misc.pl

@ -54,6 +54,12 @@ sub mtr_short_hostname () {
sub mtr_native_path($)
{
my $path= shift;
# MySQL version before 5.0 still use cygwin, no need
# to convert path
return $path
if ($::mysql_version_id < 50000);
$path=~ s/\//\\/g
if ($::glob_win32);
return $path;

Loading…
Cancel
Save