From 7d5b0f4d134bc2dab559dcf339d4b709b19550e6 Mon Sep 17 00:00:00 2001 From: simon Date: Sat, 22 Nov 2003 14:50:57 +0000 Subject: [PATCH] Trivial braino in parsing of the port forwarding config data. Was causing all port forwardings after the first dynamic one to be ignored. git-svn-id: svn://svn.tartarus.org/sgt/putty@3572 cda61777-01e9-0310-a592-d414129be87e --- ssh.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ssh.c b/ssh.c index 33da9930..d83d0c10 100644 --- a/ssh.c +++ b/ssh.c @@ -3302,6 +3302,7 @@ static void ssh1_protocol(Ssh ssh, unsigned char *in, int inlen, int ispkt) } else { while (*ssh->portfwd_strptr) ssh->portfwd_strptr++; dport = dserv = -1; + ssh->portfwd_strptr++; /* eat the NUL and move to next one */ } sport = atoi(sports); sserv = 0; @@ -5418,6 +5419,7 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt) } else { while (*ssh->portfwd_strptr) ssh->portfwd_strptr++; dport = dserv = -1; + ssh->portfwd_strptr++; /* eat the NUL and move to next one */ } sport = atoi(sports); sserv = 0; -- 2.11.0