diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2018-05-03 23:39:10 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2018-05-03 23:39:10 +0000 |
commit | a68f18cd9b491c6b52191a8ebde909e12ad9e16b (patch) | |
tree | 0badbad66c660a123df14f9b4501cdf124e92a8c /security/openssh-portable/files/patch-85fe48fd49f2e81fa30902841b362cfbb7f1933b | |
parent | Update to LLVM 5.0.2. (diff) |
- Add XMSS option to enable experimental key support added in 7.7 [1]
- Bring in upstream patches post 7.7 to fix various issues [2]:
b81b2d120e9c8a83489e241620843687758925ad - Fix tunnel forwarding broken in 7.7p1
341727df910e12e26ef161508ed76d91c40a61eb - don't kill ssh-agent's listening socket entriely if we fail to accept a connection
85fe48fd49f2e81fa30902841b362cfbb7f1933b - don't free the %C expansion, it's used later for LocalCommand
868afa68469de50d8a43e5daf867d7c624a34d20 - Disable SSH2_MSG_DEBUG messages for Twisted Conch clients
f5baa36ba79a6e8c534fb4e0a00f2614ccc42ea6 - Omit 3des-cbc if OpenSSL built without DES
PR: 227758 [1]
Submitted by: IWAMOTO Kouichi <sue@iwmt.org> [1]
PR: 227551 [2]
Reported by: rozhuk.im@gmail.com [2]
Obtained from: upstream mirror https://github.com/openssh/openssh-portable [2]
Diffstat (limited to 'security/openssh-portable/files/patch-85fe48fd49f2e81fa30902841b362cfbb7f1933b')
-rw-r--r-- | security/openssh-portable/files/patch-85fe48fd49f2e81fa30902841b362cfbb7f1933b | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/security/openssh-portable/files/patch-85fe48fd49f2e81fa30902841b362cfbb7f1933b b/security/openssh-portable/files/patch-85fe48fd49f2e81fa30902841b362cfbb7f1933b new file mode 100644 index 000000000000..5a414eceb025 --- /dev/null +++ b/security/openssh-portable/files/patch-85fe48fd49f2e81fa30902841b362cfbb7f1933b @@ -0,0 +1,24 @@ +From 85fe48fd49f2e81fa30902841b362cfbb7f1933b Mon Sep 17 00:00:00 2001 +From: "djm@openbsd.org" <djm@openbsd.org> +Date: Sat, 14 Apr 2018 21:50:41 +0000 +Subject: [PATCH] upstream: don't free the %C expansion, it's used later for + +LocalCommand + +OpenBSD-Commit-ID: 857b5cb37b2d856bfdfce61289a415257a487fb1 +--- + ssh.c | 1 - + 1 file changed, 1 deletion(-) + +diff --git ssh.c ssh.c +index d3619fe29..9c011dd7e 100644 +--- ssh.c ++++ ssh.c +@@ -1323,7 +1323,6 @@ main(int ac, char **av) + (char *)NULL); + free(cp); + } +- free(conn_hash_hex); + + if (config_test) { + dump_client_config(&options, host); |