Fix build on windows

Problem was introduces by a non pull request push for ipv6 support
This commit is contained in:
Bernhard Miklautz 2014-10-22 12:16:40 +02:00
parent 151a2f95d7
commit 4dcc0957f1

View File

@ -558,7 +558,7 @@ BOOL tcp_connect(rdpTcp* tcp, const char* hostname, int port, int timeout)
* FIXME: the following is a nasty workaround. Find a cleaner way:
* Either set port manually afterwards or get it passed as string?
*/
snprintf(port_str, 11, "%u", port);
sprintf_s(port_str, 11, "%u", port);
status = getaddrinfo(hostname, port_str, &hints, &result);
if (status) {