From 83b07a5c679791454ff9c0f2bd14b5af1f1f1457 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sat, 13 Feb 2021 10:11:30 +0000 Subject: [PATCH] Fix downright weird line breaking. How on earth did that get there?! --- proxy.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/proxy.c b/proxy.c index 6f6f05a0..d7069cb0 100644 --- a/proxy.c +++ b/proxy.c @@ -407,8 +407,7 @@ Socket *new_connection(SockAddr *addr, const char *hostname, if ((sret = platform_new_connection(addr, hostname, port, privport, oobinline, nodelay, keepalive, - plug, conf)) != - NULL) + plug, conf)) != NULL) return sret; ret = snew(ProxySocket);