From: Simon Tatham Date: Mon, 27 Apr 2015 05:54:21 +0000 (+0100) Subject: Paste error in comment. X-Git-Tag: 0.68~611 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=a8658edb17a462da32499752810bd6c989159500;p=PuTTY.git Paste error in comment. SSH2_MSG_KEX_DH_GEX_REQUEST_OLD and SSH2_MSG_KEX_DH_GEX_REQUEST were correctly _defined_ as different numbers, but the comments to the right containing the hex representations of their values were accidentally the same. --- diff --git a/ssh.h b/ssh.h index 7f452399..b6365c5b 100644 --- a/ssh.h +++ b/ssh.h @@ -783,7 +783,7 @@ void platform_ssh_share_cleanup(const char *name); #define SSH2_MSG_KEXDH_INIT 30 /* 0x1e */ #define SSH2_MSG_KEXDH_REPLY 31 /* 0x1f */ #define SSH2_MSG_KEX_DH_GEX_REQUEST_OLD 30 /* 0x1e */ -#define SSH2_MSG_KEX_DH_GEX_REQUEST 34 /* 0x1e */ +#define SSH2_MSG_KEX_DH_GEX_REQUEST 34 /* 0x22 */ #define SSH2_MSG_KEX_DH_GEX_GROUP 31 /* 0x1f */ #define SSH2_MSG_KEX_DH_GEX_INIT 32 /* 0x20 */ #define SSH2_MSG_KEX_DH_GEX_REPLY 33 /* 0x21 */