mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 09:58:01 +00:00
Minor wording and formatting tweaks.
I prefer to keep source lines under 80 chars, where possible.
This commit is contained in:
parent
86e44d3988
commit
743bfac18e
@ -88,7 +88,8 @@ void ssh2kex_coroutine(struct ssh2_transport_state *s)
|
|||||||
s->kex_init_value = SSH2_MSG_KEX_DH_GEX_INIT;
|
s->kex_init_value = SSH2_MSG_KEX_DH_GEX_INIT;
|
||||||
s->kex_reply_value = SSH2_MSG_KEX_DH_GEX_REPLY;
|
s->kex_reply_value = SSH2_MSG_KEX_DH_GEX_REPLY;
|
||||||
|
|
||||||
ppl_logevent(("Doing Diffie-Hellman key exchange using %d bit modulus and hash %s with a server supplied group",
|
ppl_logevent(("Doing Diffie-Hellman key exchange using %d-bit "
|
||||||
|
"modulus and hash %s with a server-supplied group",
|
||||||
dh_modulus_bit_size(s->dh_ctx),
|
dh_modulus_bit_size(s->dh_ctx),
|
||||||
s->kex_alg->hash->text_name));
|
s->kex_alg->hash->text_name));
|
||||||
} else {
|
} else {
|
||||||
@ -97,7 +98,8 @@ void ssh2kex_coroutine(struct ssh2_transport_state *s)
|
|||||||
s->kex_init_value = SSH2_MSG_KEXDH_INIT;
|
s->kex_init_value = SSH2_MSG_KEXDH_INIT;
|
||||||
s->kex_reply_value = SSH2_MSG_KEXDH_REPLY;
|
s->kex_reply_value = SSH2_MSG_KEXDH_REPLY;
|
||||||
|
|
||||||
ppl_logevent(("Doing Diffie-Hellman key exchange using %d bit modulus and hash %s with standard group \"%s\"",
|
ppl_logevent(("Doing Diffie-Hellman key exchange using %d-bit "
|
||||||
|
"modulus and hash %s with standard group \"%s\"",
|
||||||
dh_modulus_bit_size(s->dh_ctx),
|
dh_modulus_bit_size(s->dh_ctx),
|
||||||
s->kex_alg->hash->text_name,
|
s->kex_alg->hash->text_name,
|
||||||
s->kex_alg->groupname));
|
s->kex_alg->groupname));
|
||||||
|
Loading…
Reference in New Issue
Block a user