mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-07-03 00:03:19 +02:00
Corrected StringComparison type
This commit is contained in:
parent
ab7398d3cd
commit
0bc9452bbf
10 changed files with 14 additions and 14 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue