1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-05 13:16:09 +03:00

Convert to mixed_path under cywin, not native_path

This commit is contained in:
unknown
2008-02-22 12:23:46 +01:00
parent 0d01221c17
commit 11805bec02

View File

@@ -138,10 +138,10 @@ sub new {
# }
if (IS_CYGWIN){
$path= native_path($path);
$input= native_path($input);
$output= native_path($output);
$error= native_path($error);
$path= mixed_path($path);
$input= mixed_path($input);
$output= mixed_path($output);
$error= mixed_path($error);
}
my @safe_args;