X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/8e97579565606eb5386c85717640ee534a8606dc..d200ba25fea891d749b0fefc257147c9b8cc5466:/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);