mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 22:16:04 +00:00
[NTFS] - Fix a mistake with AddFileName() from my last commit. Also, move CaseSensitive parameter before output parameters in the parameter list of several functions.
svn path=/branches/GSoC_2016/NTFS/; revision=75191
This commit is contained in:
parent
032be02954
commit
948e91907a
5 changed files with 34 additions and 17 deletions
|
@ -557,7 +557,7 @@ NtfsDirFindFile(PNTFS_VCB Vcb,
|
|||
DPRINT1("Will now look for file '%wZ' with stream '%S'\n", &File, Colon);
|
||||
}
|
||||
|
||||
Status = NtfsLookupFileAt(Vcb, &File, &FileRecord, &MFTIndex, CurrentDir, CaseSensitive);
|
||||
Status = NtfsLookupFileAt(Vcb, &File, CaseSensitive, &FileRecord, &MFTIndex, CurrentDir);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
return Status;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue