sys,dll: symbolic link (reparse point) support: WIP

This commit is contained in:
Bill Zissimopoulos
2016-08-04 11:25:35 -07:00
parent ab278d7b60
commit 7337f3c6cd
7 changed files with 12 additions and 7 deletions

View File

@ -126,7 +126,7 @@ static NTSTATUS FspFsvolFileSystemControlReparsePoint(
ReparseTag = ((PREPARSE_DATA_BUFFER)InputBuffer)->ReparseTag;
/* NTFS severely limits symbolic links; we will not do that unless our file system asks */
if (FsvolDeviceExtension->VolumeParams.ReparsePointPrivilegeCheck)
if (FsvolDeviceExtension->VolumeParams.ReparsePointsPrivilegeCheck)
{
if (IO_REPARSE_TAG_SYMLINK == ReparseTag &&
KernelMode != Irp->RequestorMode &&