Corrected StringComparison type

This commit is contained in:
Tal Aloni 2017-08-30 12:41:21 +03:00
parent ab7398d3cd
commit 0bc9452bbf
10 changed files with 14 additions and 14 deletions

View file

@ -261,7 +261,7 @@ namespace SMBServer
{
for (int index = 0; index < list.Count; index++)
{
if (string.Equals(list[index], value, StringComparison.InvariantCultureIgnoreCase))
if (string.Equals(list[index], value, StringComparison.OrdinalIgnoreCase))
{
return index;
}