summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authortron <tron>2002-03-07 16:45:33 +0000
committertron <tron>2002-03-07 16:45:33 +0000
commit340a0d3aa596619523bb10529c1e99e26155daf6 (patch)
treeb8209c427279bb06fb547c30f3eb0f3cb5280c01 /security
parent0bcc250f260d0c82ee784a57119b1d23883fdb6d (diff)
downloadpkgsrc-340a0d3aa596619523bb10529c1e99e26155daf6.tar.gz
Update "openssh" package to version 3.0.2.1nb2. Changes since 3.0.2.1nb1:
- Fix security problem described in advisory "PINE-CERT-20020301".
Diffstat (limited to 'security')
-rw-r--r--security/openssh/Makefile4
-rw-r--r--security/openssh/distinfo3
-rw-r--r--security/openssh/patches/patch-ac13
3 files changed, 17 insertions, 3 deletions
diff --git a/security/openssh/Makefile b/security/openssh/Makefile
index b3a0d0595fd..e32753027a0 100644
--- a/security/openssh/Makefile
+++ b/security/openssh/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.62 2002/02/05 04:26:27 jlam Exp $
+# $NetBSD: Makefile,v 1.63 2002/03/07 16:45:33 tron Exp $
DISTNAME= openssh-3.0.2p1
PKGNAME= openssh-3.0.2.1
SVR4_PKGNAME= ossh
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= security
MASTER_SITES= ftp://gd.tuwien.ac.at/OpenBSD/OpenSSH/portable/ \
ftp://ftp.openssh.com/pub/OpenBSD/OpenSSH/portable/ \
diff --git a/security/openssh/distinfo b/security/openssh/distinfo
index a6a6b1a0469..a62400f890b 100644
--- a/security/openssh/distinfo
+++ b/security/openssh/distinfo
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.9 2002/02/05 04:17:32 jlam Exp $
+$NetBSD: distinfo,v 1.10 2002/03/07 16:45:34 tron Exp $
SHA1 (openssh-3.0.2p1.tar.gz) = c9a7e02936ace163ea58ec42e8e3f95df27fef2a
Size (openssh-3.0.2p1.tar.gz) = 781092 bytes
SHA1 (patch-aa) = 275e035cbed29ec3e72d7b3c9290cec8068d742b
SHA1 (patch-ab) = 271811fc88fbed42f22fa1dc503dc88953b5d76f
+SHA1 (patch-ac) = e151977f95723c9bdc48dea5e313b89361b5b515
SHA1 (patch-ah) = 0c75daaa11c6a6e32bce628b8f866008677f155f
diff --git a/security/openssh/patches/patch-ac b/security/openssh/patches/patch-ac
new file mode 100644
index 00000000000..f87effd2701
--- /dev/null
+++ b/security/openssh/patches/patch-ac
@@ -0,0 +1,13 @@
+$NetBSD: patch-ac,v 1.5 2002/03/07 16:45:36 tron Exp $
+
+--- channels.c.orig Fri Oct 12 03:35:05 2001
++++ channels.c Thu Mar 7 17:34:38 2002
+@@ -145,7 +145,7 @@
+ {
+ Channel *c;
+
+- if (id < 0 || id > channels_alloc) {
++ if (id < 0 || id >= channels_alloc) {
+ log("channel_lookup: %d: bad id", id);
+ return NULL;
+ }