mirror of
https://github.com/winfsp/winfsp.git
synced 2025-07-04 01:42:58 -05:00
sys,launcher: MUP volume prefixes (share names) are now case insensitive
This commit is contained in:
@ -157,8 +157,8 @@ static SVC_INSTANCE *SvcInstanceLookup(PWSTR ClassName, PWSTR InstanceName)
|
||||
{
|
||||
SvcInstance = CONTAINING_RECORD(ListEntry, SVC_INSTANCE, ListEntry);
|
||||
|
||||
if (0 == lstrcmpW(ClassName, SvcInstance->ClassName) &&
|
||||
0 == lstrcmpW(InstanceName, SvcInstance->InstanceName))
|
||||
if (0 == lstrcmpiW(ClassName, SvcInstance->ClassName) &&
|
||||
0 == lstrcmpiW(InstanceName, SvcInstance->InstanceName))
|
||||
return SvcInstance;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user