mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[BOOTDATA] Add two missing separating commas in the ServiceGroupOrder List multi-string.
Typos introduced in commit 4d1ea554c
.
These had the effect of enumerating "NetworkProviderRemoteValidation"
and "Extended BasePCI Configuration" as groups, which were of course
invalid/non-existent.
The actual groups are: "NetworkProvider", "RemoteValidation",
"Extended Base", and "PCI Configuration".
Fixing this may correct the loading order of drivers that belong to
these groups (if we do have such drivers).
This commit is contained in:
parent
fd00338b59
commit
cfe387a9b0
1 changed files with 2 additions and 2 deletions
|
@ -1466,11 +1466,11 @@ HKLM,"SYSTEM\CurrentControlSet\Control\ServiceGroupOrder","List",0x00010000, \
|
|||
"SpoolerGroup", \
|
||||
"AudioGroup", \
|
||||
"SmartCardGroup", \
|
||||
"NetworkProvider" \
|
||||
"NetworkProvider", \
|
||||
"RemoteValidation", \
|
||||
"NetDDEGroup", \
|
||||
"Parallel arbitrator", \
|
||||
"Extended Base" \
|
||||
"Extended Base", \
|
||||
"PCI Configuration", \
|
||||
"MS Transactions"
|
||||
|
||||
|
|
Loading…
Reference in a new issue