Fixed invalid declaration and missing argument

This commit is contained in:
Hardening 2014-05-21 19:13:40 +02:00
parent de1c08736f
commit 5c9a6408cf
2 changed files with 2 additions and 2 deletions

View File

@ -290,7 +290,7 @@ BOOL transport_connect_tls(rdpTransport* transport)
transport->frontBio = targetTls->bio;
if (!transport->frontBio)
{
fprintf(stderr, "%s: unable to prepend a filtering TLS bio");
fprintf(stderr, "%s: unable to prepend a filtering TLS bio", __FUNCTION__);
return FALSE;
}

View File

@ -105,7 +105,7 @@ void transport_set_gateway_enabled(rdpTransport* transport, BOOL GatewayEnabled)
void transport_set_nla_mode(rdpTransport* transport, BOOL NlaMode);
void transport_get_read_handles(rdpTransport* transport, HANDLE* events, DWORD* count);
BOOL tranport_is_write_blocked(rdpTransport* transport);
BOOL tranport_drain_output_buffer(rdpTransport* transport);
int tranport_drain_output_buffer(rdpTransport* transport);
wStream* transport_receive_pool_take(rdpTransport* transport);
int transport_receive_pool_return(rdpTransport* transport, wStream* pdu);