From bc0260bc300d18c191388189de2a4f6005b58980 Mon Sep 17 00:00:00 2001 From: Alex Ionescu Date: Sun, 2 Jul 2006 01:23:18 +0000 Subject: [PATCH] - Correct function name svn path=/trunk/; revision=22754 --- reactos/ntoskrnl/io/iomgr/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/io/iomgr/file.c b/reactos/ntoskrnl/io/iomgr/file.c index 00438baeb1c..cea681e026c 100644 --- a/reactos/ntoskrnl/io/iomgr/file.c +++ b/reactos/ntoskrnl/io/iomgr/file.c @@ -100,7 +100,7 @@ IopParseDevice(IN PVOID ParseObject, /* Check if it's not already mounted */ if (!(DeviceObject->Vpb->Flags & VPB_MOUNTED)) { - Status = IoMountVolume(DeviceObject, FALSE); + Status = IopMountVolume(DeviceObject, FALSE); if (!NT_SUCCESS(Status)) { /* Couldn't mount, fail the lookup */