Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
8044c11e
Commit
8044c11e
authored
Mar 17, 2009
by
Aric Stewart
Committed by
Alexandre Julliard
Mar 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Report unixfs instead of ntfs for unknown filesystem type.
This avoids programs such as the .Net2.0 installer trying to do ntfs specific functions on the disk.
parent
58f2a01e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
volume.c
dlls/kernel32/volume.c
+2
-2
No files found.
dlls/kernel32/volume.c
View file @
8044c11e
...
...
@@ -511,8 +511,8 @@ BOOL WINAPI GetVolumeInformationW( LPCWSTR root, LPWSTR label, DWORD label_len,
static
const
WCHAR
audiocdW
[]
=
{
'A'
,
'u'
,
'd'
,
'i'
,
'o'
,
' '
,
'C'
,
'D'
,
0
};
static
const
WCHAR
fatW
[]
=
{
'F'
,
'A'
,
'T'
,
0
};
static
const
WCHAR
fat32W
[]
=
{
'F'
,
'A'
,
'T'
,
'3'
,
'2'
,
0
};
static
const
WCHAR
ntfsW
[]
=
{
'N'
,
'T'
,
'F'
,
'S'
,
0
};
static
const
WCHAR
cdfsW
[]
=
{
'C'
,
'D'
,
'F'
,
'S'
,
0
};
static
const
WCHAR
unixfsW
[]
=
{
'U'
,
'N'
,
'I'
,
'X'
,
'F'
,
'S'
,
0
};
WCHAR
device
[]
=
{
'\\'
,
'\\'
,
'.'
,
'\\'
,
'A'
,
':'
,
0
};
HANDLE
handle
;
...
...
@@ -613,7 +613,7 @@ fill_fs_info: /* now fill in the information that depends on the file system ty
if
(
flags
)
*
flags
=
FILE_CASE_PRESERVED_NAMES
;
/* FIXME */
break
;
default:
if
(
fsname
)
lstrcpynW
(
fsname
,
nt
fsW
,
fsname_len
);
if
(
fsname
)
lstrcpynW
(
fsname
,
unix
fsW
,
fsname_len
);
if
(
filename_len
)
*
filename_len
=
255
;
if
(
flags
)
*
flags
=
FILE_CASE_PRESERVED_NAMES
;
break
;
...
...
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