Skip to content

Commit

Permalink
issue dsccommunity#34 - resolve case mismatch in resource parser and …
Browse files Browse the repository at this point in the history
…schema
  • Loading branch information
chambersmp committed Oct 24, 2023
1 parent c827c54 commit daa16a8
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -655,15 +655,15 @@ class GPRegistryPolicy
}
([RegType]::REG_DWORD)
{
$Result = 'DWord'
$Result = 'Dword'
}
([RegType]::REG_MULTI_SZ)
{
$Result = 'MultiString'
}
([RegType]::REG_QWORD)
{
$Result = 'QWord'
$Result = 'Qword'
}
default
{
Expand Down Expand Up @@ -692,15 +692,15 @@ class GPRegistryPolicy
{
$result = [RegType]::REG_BINARY
}
'DWord'
'Dword'
{
$result = [RegType]::REG_DWORD
}
'MultiString'
{
$result = [RegType]::REG_MULTI_SZ
}
'QWord'
'Qword'
{
$result = [RegType]::REG_QWORD
}
Expand Down

0 comments on commit daa16a8

Please sign in to comment.