From a8756193fe9c253f9456eea4ac252889c56d195c Mon Sep 17 00:00:00 2001 From: ben Date: Wed, 19 Jan 2005 12:34:52 +0000 Subject: [PATCH] Make the outgoing SSH2 sequence number unsigned, so as to avoid depending on overflow behaviour of signed integers. git-svn-id: svn://svn.tartarus.org/sgt/putty@5142 cda61777-01e9-0310-a592-d414129be87e --- ssh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh.c b/ssh.c index b986c1eb..bf223bcd 100644 --- a/ssh.c +++ b/ssh.c @@ -689,7 +689,7 @@ struct ssh_tag { int overall_bufsize; int throttled_all; int v1_stdout_throttling; - int v2_outgoing_sequence; + unsigned long v2_outgoing_sequence; int ssh1_rdpkt_crstate; int ssh2_rdpkt_crstate; -- 2.11.0