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:
Mike McDonald 2015-02-23 09:24:43 -05:00
parent 07a05ae80f
commit 6dd333c4c8

View File

@ -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;