summaryrefslogtreecommitdiff
path: root/compat.c
diff options
context:
space:
mode:
authordtucker@openbsd.org <dtucker@openbsd.org>2015-04-10 05:16:50 +0000
committerDamien Miller <djm@mindrot.org>2015-04-13 14:37:19 +1000
commitd8f391caef62378463a0e6b36f940170dadfe605 (patch)
tree3a080f48952021b333e34bfc4747d9d54aa52b1c /compat.c
parent2c2cfe1a1c97eb9a08cc9817fd0678209680c636 (diff)
upstream commit
Don't send hostkey advertisments (hostkeys-00@openssh.com) to current versions of Tera Term as they can't handle them. Newer versions should be OK. Patch from Bryan Drewery and IWAMOTO Kouichi, ok djm@
Diffstat (limited to 'compat.c')
-rw-r--r--compat.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/compat.c b/compat.c
index 2498168d7..0934de90f 100644
--- a/compat.c
+++ b/compat.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: compat.c,v 1.88 2015/04/07 23:00:42 djm Exp $ */ 1/* $OpenBSD: compat.c,v 1.89 2015/04/10 05:16:50 dtucker Exp $ */
2/* 2/*
3 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved. 3 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
4 * 4 *
@@ -167,6 +167,17 @@ compat_datafellows(const char *version)
167 SSH_BUG_SCANNER }, 167 SSH_BUG_SCANNER },
168 { "Probe-*", 168 { "Probe-*",
169 SSH_BUG_PROBE }, 169 SSH_BUG_PROBE },
170 { "TeraTerm SSH*,"
171 "TTSSH/1.5.*,"
172 "TTSSH/2.1*,"
173 "TTSSH/2.2*,"
174 "TTSSH/2.3*,"
175 "TTSSH/2.4*,"
176 "TTSSH/2.5*,"
177 "TTSSH/2.6*,"
178 "TTSSH/2.70*,"
179 "TTSSH/2.71*,"
180 "TTSSH/2.72*", SSH_BUG_HOSTKEYS },
170 { NULL, 0 } 181 { NULL, 0 }
171 }; 182 };
172 183