Modified virtual channel open (as a result of an MCS channel join) to do a case-insensitive comparison of the virtual channel name.
This commit is contained in:
parent
07a05ae80f
commit
6dd333c4c8
@ -62,7 +62,7 @@ static HANDLE freerdp_peer_virtual_channel_open(freerdp_peer* client, const char
|
||||
if (!mcsChannel->joined)
|
||||
continue;
|
||||
|
||||
if (strncmp(name, mcsChannel->Name, length) == 0)
|
||||
if (_strnicmp(name, mcsChannel->Name, length) == 0)
|
||||
{
|
||||
joined = TRUE;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user