1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

Remove do_ssh2_transport variable 'activated_authconn'.

It hasn't been used since 2012, when commit 8e0ab8be5 introduced a new
method of getting the do_ssh2_authconn coroutine started, and didn't
notice that the variable we were previously using was now completely
unused.
This commit is contained in:
Simon Tatham 2018-05-17 15:19:54 +01:00
parent 528513ddea
commit d68a772bf7

4
ssh.c
View File

@ -6541,7 +6541,7 @@ static void do_ssh2_transport(Ssh ssh, const void *vin, int inlen,
const struct ssh_compress *preferred_comp;
int userauth_succeeded; /* for delayed compression */
int pending_compression;
int got_session_id, activated_authconn;
int got_session_id;
struct Packet *pktout;
int dlgret;
int guessok;
@ -6570,7 +6570,7 @@ static void do_ssh2_transport(Ssh ssh, const void *vin, int inlen,
s->csmac_tobe = s->scmac_tobe = NULL;
s->cscomp_tobe = s->sccomp_tobe = NULL;
s->got_session_id = s->activated_authconn = FALSE;
s->got_session_id = FALSE;
s->userauth_succeeded = FALSE;
s->pending_compression = FALSE;
s->need_gss_transient_hostkey = FALSE;