X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/3cca053ede5392c743cb5c22b4cd10afc576ebef..1b56c05584652dba13d7f4f54e7ac2560dab92fe:/ssh.c diff --git a/ssh.c b/ssh.c index e0fd106a..3e8396fd 100644 --- a/ssh.c +++ b/ssh.c @@ -3642,7 +3642,7 @@ static int do_ssh2_transport(unsigned char *in, int inlen, int ispkt) /* * Be prepared to work around the buggy MAC problem. */ - if (cfg.buggymac || (ssh_remote_bugs & BUG_SSH2_HMAC)) + if (ssh_remote_bugs & BUG_SSH2_HMAC) maclist = buggymacs, nmacs = lenof(buggymacs); else maclist = macs, nmacs = lenof(macs);