Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matt-wu/Ext3Fsd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaho Ng <ngkaho1234@gmail.com>2016-05-21 16:35:02 +0300
committerKaho Ng <ngkaho1234@gmail.com>2016-05-21 16:35:02 +0300
commite486647875afc167e9d1e9fe337ab4606df07a94 (patch)
tree29223a90d43da9efb40caa21fc7b268db3fe705b /Ext3Fsd
parent8cd930800ee12e6c77912cc7f9c44dda7b7969f0 (diff)
dispatch: fix IRP_MJ_SET_EA calling Ext2QueryEa
Diffstat (limited to 'Ext3Fsd')
-rw-r--r--Ext3Fsd/dispatch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ext3Fsd/dispatch.c b/Ext3Fsd/dispatch.c
index 82d2e61..59054de 100644
--- a/Ext3Fsd/dispatch.c
+++ b/Ext3Fsd/dispatch.c
@@ -271,7 +271,7 @@ Ext2DispatchRequest (IN PEXT2_IRP_CONTEXT IrpContext)
return Ext2QueryEa(IrpContext);
case IRP_MJ_SET_EA:
- return Ext2QueryEa(IrpContext);
+ return Ext2SetEa(IrpContext);
#if (_WIN32_WINNT >= 0x0500)
case IRP_MJ_PNP: