mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-25 09:12:24 +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:
parent
528513ddea
commit
d68a772bf7
4
ssh.c
4
ssh.c
@ -6541,7 +6541,7 @@ static void do_ssh2_transport(Ssh ssh, const void *vin, int inlen,
|
|||||||
const struct ssh_compress *preferred_comp;
|
const struct ssh_compress *preferred_comp;
|
||||||
int userauth_succeeded; /* for delayed compression */
|
int userauth_succeeded; /* for delayed compression */
|
||||||
int pending_compression;
|
int pending_compression;
|
||||||
int got_session_id, activated_authconn;
|
int got_session_id;
|
||||||
struct Packet *pktout;
|
struct Packet *pktout;
|
||||||
int dlgret;
|
int dlgret;
|
||||||
int guessok;
|
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->csmac_tobe = s->scmac_tobe = NULL;
|
||||||
s->cscomp_tobe = s->sccomp_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->userauth_succeeded = FALSE;
|
||||||
s->pending_compression = FALSE;
|
s->pending_compression = FALSE;
|
||||||
s->need_gss_transient_hostkey = FALSE;
|
s->need_gss_transient_hostkey = FALSE;
|
||||||
|
Loading…
Reference in New Issue
Block a user