diff options
author | Colin Watson <cjwatson@debian.org> | 2012-05-18 12:16:05 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2012-05-18 12:16:05 +0100 |
commit | dabbdfacc9f6995b0739772a47704186dcf34ea5 (patch) | |
tree | 0a0b306a637bc85eb719261b74884f0b9573ec41 /compat.c | |
parent | 1e0d51b642cac9a6bfb719e6320905625aa5f943 (diff) | |
parent | dd5ed53e20d218607260916a6b04d1c8c5b3d88f (diff) |
* New upstream release (http://www.openssh.org/txt/release-6.0).
- Fix IPQoS not being set on non-mapped v4-in-v6 addressed connections
(closes: #643312, #650512).
- Add a new privilege separation sandbox implementation for Linux's new
seccomp sandbox, automatically enabled on platforms that support it.
(Note: privilege separation sandboxing is still experimental.)
Diffstat (limited to 'compat.c')
-rw-r--r-- | compat.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: compat.c,v 1.78 2008/09/11 14:22:37 markus Exp $ */ | 1 | /* $OpenBSD: compat.c,v 1.79 2011/09/23 07:45:05 markus 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 | * |
@@ -92,6 +92,7 @@ compat_datafellows(const char *version) | |||
92 | { "OpenSSH_3.*", SSH_OLD_FORWARD_ADDR }, | 92 | { "OpenSSH_3.*", SSH_OLD_FORWARD_ADDR }, |
93 | { "Sun_SSH_1.0*", SSH_BUG_NOREKEY|SSH_BUG_EXTEOF}, | 93 | { "Sun_SSH_1.0*", SSH_BUG_NOREKEY|SSH_BUG_EXTEOF}, |
94 | { "OpenSSH_4*", 0 }, | 94 | { "OpenSSH_4*", 0 }, |
95 | { "OpenSSH_5*", SSH_NEW_OPENSSH|SSH_BUG_DYNAMIC_RPORT}, | ||
95 | { "OpenSSH*", SSH_NEW_OPENSSH }, | 96 | { "OpenSSH*", SSH_NEW_OPENSSH }, |
96 | { "*MindTerm*", 0 }, | 97 | { "*MindTerm*", 0 }, |
97 | { "2.1.0*", SSH_BUG_SIGBLOB|SSH_BUG_HMAC| | 98 | { "2.1.0*", SSH_BUG_SIGBLOB|SSH_BUG_HMAC| |