diff options
author | des <des@FreeBSD.org> | 2017-09-01 22:52:18 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2017-09-01 22:52:18 +0000 |
commit | b3ef7b369b144d0f58083c3965742583f3ab7190 (patch) | |
tree | ee5a517719df5e0e4945a847cf4f370dff384b64 /secure/lib | |
parent | 1c126c5485cdbac1b2c6c5f696168f3807817d5b (diff) | |
download | FreeBSD-src-b3ef7b369b144d0f58083c3965742583f3ab7190.zip FreeBSD-src-b3ef7b369b144d0f58083c3965742583f3ab7190.tar.gz |
Upgrade OpenSSH to 7.3p1.
This is the last version of OpenSSH which does not break compatibility
more than we can live with in a stable branch. Further commits will
follow to backport some bug fixes from newer versions.
The sshd breakage in the previous attempt was due to an upstream bug
(a 0 was changed to a 1 while refactoring send_rexec_state() in sshd.c)
which only manifested itself when sshd was built with SSH 1 support.
Approved by: re@
Diffstat (limited to 'secure/lib')
-rw-r--r-- | secure/lib/libssh/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/secure/lib/libssh/Makefile b/secure/lib/libssh/Makefile index 9ee878e..0049cb2 100644 --- a/secure/lib/libssh/Makefile +++ b/secure/lib/libssh/Makefile @@ -13,7 +13,7 @@ SRCS+= authfd.c authfile.c bufaux.c bufbn.c bufec.c buffer.c \ compat.c crc32.c deattack.c fatal.c hostfile.c \ log.c match.c md-sha256.c moduli.c nchan.c packet.c opacket.c \ readpass.c rsa.c ttymodes.c xmalloc.c addrmatch.c \ - atomicio.c key.c dispatch.c mac.c uidswap.c uuencode.c misc.c \ + atomicio.c key.c dispatch.c mac.c uidswap.c uuencode.c misc.c utf8.c \ monitor_fdpass.c rijndael.c ssh-dss.c ssh-ecdsa.c ssh-rsa.c dh.c \ msg.c progressmeter.c dns.c entropy.c umac.c umac128.c \ ssh-pkcs11.c smult_curve25519_ref.c \ @@ -23,7 +23,7 @@ SRCS+= authfd.c authfile.c bufaux.c bufbn.c bufec.c buffer.c \ kex.c kexdh.c kexgex.c kexecdh.c kexc25519.c \ kexdhc.c kexgexc.c kexecdhc.c kexc25519c.c \ kexdhs.c kexgexs.c kexecdhs.c kexc25519s.c \ - platform-pledge.c + platform-pledge.c platform-tracing.c # gss-genr.c should be in $SRCS but causes linking problems, so it is # compiled directly into sshd instead. |