diff options
author | Leo Famulari <leo@famulari.name> | 2016-03-10 15:30:00 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-03-10 15:34:05 -0500 |
commit | efa3752964521ceb31d99692ae9ec6dfa4a2fa33 (patch) | |
tree | 7750e7241de5ce4f7f9fd425d3a0ae201c973f66 /gnu/packages/ssh.scm | |
parent | a232ce429e5eb9516a937a8aa24dd7b4f0c92f16 (diff) | |
download | gnu-guix-efa3752964521ceb31d99692ae9ec6dfa4a2fa33.tar gnu-guix-efa3752964521ceb31d99692ae9ec6dfa4a2fa33.tar.gz |
gnu: openssh: Update to 7.2p2 [fixes CVE-2016-3115].
* gnu/packages/ssh.scm (openssh): Update to 7.2p2.
Diffstat (limited to 'gnu/packages/ssh.scm')
-rw-r--r-- | gnu/packages/ssh.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index 307ac70659..299457601f 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -115,7 +115,7 @@ a server that supports the SSH-2 protocol.") (define-public openssh (package (name "openssh") - (version "7.2p1") + (version "7.2p2") (source (origin (method url-fetch) (uri (let ((tail (string-append name "-" version ".tar.gz"))) @@ -126,7 +126,7 @@ a server that supports the SSH-2 protocol.") (string-append "http://ftp2.fr.openbsd.org/pub/OpenBSD/OpenSSH/portable/" tail)))) (sha256 (base32 - "1hsa1f3641pdj57a55gmnvcya3wwww2fc2cvb77y95rm5xxw6g4p")))) + "132lh9aanb0wkisji1d6cmsxi520m8nh7c7i9wi6m1s3l38q29x7")))) (build-system gnu-build-system) (inputs `(("groff" ,groff) ("openssl" ,openssl) |