fix for PROTOCOL_RDP

This commit is contained in:
Jay Sorg 2011-08-31 18:51:55 -07:00
parent 48c14204d4
commit 5d094c7dbd
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ boolean rdp_client_connect(rdpRdp* rdp)
ret = transport_connect_nla(rdp->transport);
else if (rdp->nego->selected_protocol & PROTOCOL_TLS)
ret = transport_connect_tls(rdp->transport);
else if (rdp->nego->selected_protocol & PROTOCOL_RDP)
else if (rdp->nego->selected_protocol == PROTOCOL_RDP) /* 0 */
ret = transport_connect_rdp(rdp->transport);
if (!ret)