1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-22 14:39:24 -05:00

Eliminate a "possible unintended assignment" warning.

[originally from svn r3179]
This commit is contained in:
Ben Harris 2003-05-10 11:50:18 +00:00
parent ccc9ec2bce
commit c98b69f651

View File

@ -388,7 +388,8 @@ Socket new_connection(SockAddr addr, char *hostname,
Socket sret;
if ((sret = platform_new_connection(addr, hostname, port, privport,
oobinline, nodelay, plug, cfg)) )
oobinline, nodelay, plug, cfg)) !=
NULL)
return sret;
ret = snew(struct Socket_proxy_tag);