Compare input parameters, while ignoring differences in case
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 26s
Builds / ExectOS (i686) (push) Successful in 26s

This commit is contained in:
Rafal Kupiec 2023-12-07 16:15:17 +01:00
parent a261c68808
commit 368035c105
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4

View File

@ -61,7 +61,7 @@ BlpUpdateGlobalConfiguration(IN PWCHAR Options)
while(Argument != NULL)
{
/* Check all provided parameters */
if(RtlCompareWideString(Argument, L"DEFAULT=", 8) == 0)
if(RtlCompareWideStringInsensitive(Argument, L"DEFAULT=", 8) == 0)
{
/* Skip to the argument value and calculate argument length */
Argument += 8;
@ -72,7 +72,7 @@ BlpUpdateGlobalConfiguration(IN PWCHAR Options)
RtlCopyMemory(BlpConfiguration.Default, Argument, (Length * sizeof(WCHAR)) - 1);
BlpConfiguration.Default[Length] = '\0';
}
else if(RtlCompareWideString(Argument, L"DEBUG=", 6) == 0)
else if(RtlCompareWideStringInsensitive(Argument, L"DEBUG=", 6) == 0)
{
/* Skip to the argument value */
Argument += 6;
@ -87,12 +87,12 @@ BlpUpdateGlobalConfiguration(IN PWCHAR Options)
BlpConfiguration.Debug[Length] = '\0';
}
}
else if(RtlCompareWideString(Argument, L"SHELL", 5) == 0)
else if(RtlCompareWideStringInsensitive(Argument, L"SHELL", 5) == 0)
{
/* Force shell mode */
BlpConfiguration.Shell = TRUE;
}
else if(RtlCompareWideString(Argument, L"TIMEOUT=", 8) == 0)
else if(RtlCompareWideStringInsensitive(Argument, L"TIMEOUT=", 8) == 0)
{
/* Skip to the argument value */
Argument += 8;
@ -108,7 +108,7 @@ BlpUpdateGlobalConfiguration(IN PWCHAR Options)
Argument++;
}
}
else if(RtlCompareWideString(Argument, L"TUNE=", 5) == 0)
else if(RtlCompareWideStringInsensitive(Argument, L"TUNE=", 5) == 0)
{
/* Skip to the argument value */
Argument += 5;