Commit a3af1361 authored by Andrew Eikum's avatar Andrew Eikum Committed by Alexandre Julliard

ntdll: Claim success for FSCTL_SET_SPARSE.

parent f6c104b3
......@@ -1795,6 +1795,11 @@ NTSTATUS WINAPI NtFsControlFile(HANDLE handle, HANDLE event, PIO_APC_ROUTINE apc
}
break;
}
case FSCTL_SET_SPARSE:
TRACE("FSCTL_SET_SPARSE: Ignoring request\n");
io->Information = 0;
status = STATUS_SUCCESS;
break;
case FSCTL_PIPE_LISTEN:
case FSCTL_PIPE_WAIT:
default:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment