Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
c1f8e7f9
Commit
c1f8e7f9
authored
Mar 01, 2007
by
msvensson@pilot.blaudden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MySQL versions before 5.0 still use cygwin, no need
to convert path
parent
b6fd729b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
mysql-test/lib/mtr_misc.pl
mysql-test/lib/mtr_misc.pl
+6
-0
No files found.
mysql-test/lib/mtr_misc.pl
View file @
c1f8e7f9
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment