mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 08:12:15 +00:00
[MOUNTMGR] Rectify "NoAutoMount" usage (#7030)
This "NoAutoMount" member was not consistently used. Sometimes it was used correctly, some other times it was used as "not NoAutoMount" i.e. "AutoMount" enabled. Fix this consistently throughout the source, and fix also some comments.
This commit is contained in:
parent
2aad6b133f
commit
5f26356079
4 changed files with 44 additions and 55 deletions
|
@ -19,7 +19,7 @@ typedef struct _DEVICE_EXTENSION
|
|||
PVOID NotificationEntry;
|
||||
KSEMAPHORE DeviceLock;
|
||||
KSEMAPHORE RemoteDatabaseLock;
|
||||
ULONG AutomaticDriveLetter;
|
||||
BOOLEAN AutomaticDriveLetter;
|
||||
LIST_ENTRY IrpListHead;
|
||||
ULONG EpicNumber;
|
||||
LIST_ENTRY SavedLinksListHead;
|
||||
|
@ -240,12 +240,6 @@ HasDriveLetter(
|
|||
IN PDEVICE_INFORMATION DeviceInformation
|
||||
);
|
||||
|
||||
CODE_SEG("INIT")
|
||||
BOOLEAN
|
||||
MountmgrReadNoAutoMount(
|
||||
IN PUNICODE_STRING RegistryPath
|
||||
);
|
||||
|
||||
/* database.c */
|
||||
|
||||
extern PWSTR DatabasePath;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue