diff --git a/reactos/drivers/fs/fs_rec/cdfs.c b/reactos/drivers/fs/fs_rec/cdfs.c index 779ff9bde42..b25df5dc246 100644 --- a/reactos/drivers/fs/fs_rec/cdfs.c +++ b/reactos/drivers/fs/fs_rec/cdfs.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: cdfs.c,v 1.3 2002/05/28 16:11:17 ekohl Exp $ +/* $Id: cdfs.c,v 1.4 2002/06/12 23:35:55 ekohl Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -119,12 +119,8 @@ FsRecCdfsFsControl(IN PDEVICE_OBJECT DeviceObject, case IRP_MN_LOAD_FILE_SYSTEM: DPRINT("Cdfs: IRP_MN_LOAD_FILE_SYSTEM\n"); -#if 0 RtlInitUnicodeString(&RegistryPath, - L"\\Registry\\Machine\\SYSTEM\\CurrentControlSet\\Services\\Cdfs"); -#endif - RtlInitUnicodeString(&RegistryPath, - L"\\SystemRoot\\system32\\drivers\\cdfs.sys"); + L"\\Registry\\Machine\\System\\CurrentControlSet\\Services\\Cdfs"); Status = ZwLoadDriver(&RegistryPath); if (!NT_SUCCESS(Status)) { diff --git a/reactos/drivers/fs/fs_rec/fat.c b/reactos/drivers/fs/fs_rec/fat.c index 7989cb65578..6d94effbab5 100644 --- a/reactos/drivers/fs/fs_rec/fat.c +++ b/reactos/drivers/fs/fs_rec/fat.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: fat.c,v 1.2 2002/05/15 18:02:59 ekohl Exp $ +/* $Id: fat.c,v 1.3 2002/06/12 23:35:55 ekohl Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -117,12 +117,8 @@ FsRecVfatFsControl(IN PDEVICE_OBJECT DeviceObject, case IRP_MN_LOAD_FILE_SYSTEM: DPRINT("FAT: IRP_MN_LOAD_FILE_SYSTEM\n"); -#if 0 RtlInitUnicodeString(&RegistryPath, - L"\\Registry\\Machine\\SYSTEM\\CurrentControlSet\\Services\\Vfatfs"); -#endif - RtlInitUnicodeString(&RegistryPath, - L"\\SystemRoot\\system32\\drivers\\vfatfs.sys"); + L"\\Registry\\Machine\\System\\CurrentControlSet\\Services\\Vfatfs"); Status = ZwLoadDriver(&RegistryPath); if (!NT_SUCCESS(Status)) { diff --git a/reactos/drivers/fs/fs_rec/ntfs.c b/reactos/drivers/fs/fs_rec/ntfs.c index fdec9af2e0d..594acf64d00 100644 --- a/reactos/drivers/fs/fs_rec/ntfs.c +++ b/reactos/drivers/fs/fs_rec/ntfs.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: ntfs.c,v 1.3 2002/05/28 16:11:17 ekohl Exp $ +/* $Id: ntfs.c,v 1.4 2002/06/12 23:35:55 ekohl Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -118,12 +118,8 @@ FsRecNtfsFsControl(IN PDEVICE_OBJECT DeviceObject, case IRP_MN_LOAD_FILE_SYSTEM: DPRINT("NTFS: IRP_MN_LOAD_FILE_SYSTEM\n"); -#if 0 RtlInitUnicodeString(&RegistryPath, - L"\\Registry\\Machine\\SYSTEM\\CurrentControlSet\\Services\\Ntfs"); -#endif - RtlInitUnicodeString(&RegistryPath, - L"\\SystemRoot\\system32\\drivers\\ntfs.sys"); + L"\\Registry\\Machine\\System\\CurrentControlSet\\Services\\Ntfs"); Status = ZwLoadDriver(&RegistryPath); if (!NT_SUCCESS(Status)) {