1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 09:27:59 +00:00

Fix signature of platform_new_connection.

The hostname is a const char *.
This commit is contained in:
Tim Kosse 2015-08-11 11:27:20 +02:00 committed by Simon Tatham
parent 636f9cf2ee
commit a6bd42ca24

View File

@ -8,7 +8,7 @@
#include "network.h"
#include "proxy.h"
Socket platform_new_connection(SockAddr addr, char *hostname,
Socket platform_new_connection(SockAddr addr, const char *hostname,
int port, int privport,
int oobinline, int nodelay, int keepalive,
Plug plug, Conf *conf)