]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - ssh.c
Nothing seems to use the "int64" type, and it apparently causes conflicts
[PuTTY.git] / ssh.c
diff --git a/ssh.c b/ssh.c
index 75610c6799b744d9b80762894f9a4bcbb8482436..d1b7acc74a6fa80d65a5b6637cc028c5635e2d81 100644 (file)
--- a/ssh.c
+++ b/ssh.c
@@ -462,10 +462,10 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen,
 const static struct ssh_signkey *hostkey_algs[] = { &ssh_rsa, &ssh_dss };
 
 const static struct ssh_mac *macs[] = {
-    &ssh_hmac_sha1, &ssh_hmac_md5
+    &ssh_hmac_sha1, &ssh_hmac_sha1_96, &ssh_hmac_md5
 };
 const static struct ssh_mac *buggymacs[] = {
-    &ssh_hmac_sha1_buggy, &ssh_hmac_md5
+    &ssh_hmac_sha1_buggy, &ssh_hmac_sha1_96_buggy, &ssh_hmac_md5
 };
 
 static void *ssh_comp_none_init(void)