summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordjm <djm@openbsd.org>2018-07-03 11:42:12 +0000
committerdjm <djm@openbsd.org>2018-07-03 11:42:12 +0000
commit96de64b6950ad5e5ddc6b976477803d2192b36bb (patch)
tree458cf45c59c5fa66a06f239187d418b2582755d2
parentImprove strictness and control over RSA-SHA2 signature types: (diff)
downloadwireguard-openbsd-96de64b6950ad5e5ddc6b976477803d2192b36bb.tar.xz
wireguard-openbsd-96de64b6950ad5e5ddc6b976477803d2192b36bb.zip
crank version number to 7.8; needed for new compat flag for prior
version; part of RSA-SHA2 strictification, ok markus@
-rw-r--r--usr.bin/ssh/compat.c5
-rw-r--r--usr.bin/ssh/version.h4
2 files changed, 5 insertions, 4 deletions
diff --git a/usr.bin/ssh/compat.c b/usr.bin/ssh/compat.c
index f8d2fb21171..d39c2326a8a 100644
--- a/usr.bin/ssh/compat.c
+++ b/usr.bin/ssh/compat.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: compat.c,v 1.108 2018/07/03 11:39:54 djm Exp $ */
+/* $OpenBSD: compat.c,v 1.109 2018/07/03 11:42:12 djm Exp $ */
/*
* Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
*
@@ -70,7 +70,8 @@ compat_datafellows(const char *version)
"OpenSSH_7.3*,"
"OpenSSH_7.4*,"
"OpenSSH_7.5*,"
- "OpenSSH_7.6*", SSH_NEW_OPENSSH|SSH_BUG_SIGTYPE},
+ "OpenSSH_7.6*,"
+ "OpenSSH_7.7*", SSH_NEW_OPENSSH|SSH_BUG_SIGTYPE},
{ "OpenSSH*", SSH_NEW_OPENSSH },
{ "*MindTerm*", 0 },
{ "3.0.*", SSH_BUG_DEBUG },
diff --git a/usr.bin/ssh/version.h b/usr.bin/ssh/version.h
index 689564445d2..cd07feb6003 100644
--- a/usr.bin/ssh/version.h
+++ b/usr.bin/ssh/version.h
@@ -1,3 +1,3 @@
-/* $OpenBSD: version.h,v 1.81 2018/03/24 19:29:03 markus Exp $ */
+/* $OpenBSD: version.h,v 1.82 2018/07/03 11:42:12 djm Exp $ */
-#define SSH_VERSION "OpenSSH_7.7"
+#define SSH_VERSION "OpenSSH_7.8"