From 30a78aa71c79531fa5d7d06dc89e2f4d6e645e18 Mon Sep 17 00:00:00 2001 From: simon Date: Wed, 7 May 2003 08:49:57 +0000 Subject: [PATCH] Ahem. Well, the complicated Unix implementation of platform_new_connection() worked fine, but the really simple stub version for the other ports fell over horribly because I got its name wrong. NEVER ASSUME YOU'VE DONE THE EASY BIT RIGHT. git-svn-id: svn://svn.tartarus.org/sgt/putty@3166 cda61777-01e9-0310-a592-d414129be87e --- pproxy.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pproxy.c b/pproxy.c index 6a870ed1..5cb90162 100644 --- a/pproxy.c +++ b/pproxy.c @@ -8,10 +8,10 @@ #include "network.h" #include "proxy.h" -Socket new_connection(SockAddr addr, char *hostname, - int port, int privport, - int oobinline, int nodelay, Plug plug, - const Config *cfg) +Socket platform_new_connection(SockAddr addr, char *hostname, + int port, int privport, + int oobinline, int nodelay, Plug plug, + const Config *cfg) { return NULL; } -- 2.11.0