mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 09:58:01 +00:00
Make the outgoing SSH2 sequence number unsigned, so as to avoid depending
on overflow behaviour of signed integers. [originally from svn r5142]
This commit is contained in:
parent
b4b415e546
commit
e94042612f
2
ssh.c
2
ssh.c
@ -689,7 +689,7 @@ struct ssh_tag {
|
|||||||
int overall_bufsize;
|
int overall_bufsize;
|
||||||
int throttled_all;
|
int throttled_all;
|
||||||
int v1_stdout_throttling;
|
int v1_stdout_throttling;
|
||||||
int v2_outgoing_sequence;
|
unsigned long v2_outgoing_sequence;
|
||||||
|
|
||||||
int ssh1_rdpkt_crstate;
|
int ssh1_rdpkt_crstate;
|
||||||
int ssh2_rdpkt_crstate;
|
int ssh2_rdpkt_crstate;
|
||||||
|
Loading…
Reference in New Issue
Block a user