diff options
author | david <david@pkgsrc.org> | 2002-03-07 17:33:25 +0000 |
---|---|---|
committer | david <david@pkgsrc.org> | 2002-03-07 17:33:25 +0000 |
commit | 6bc4b82378d320cd903fb4f49119032662e35c0a (patch) | |
tree | 9950eb57371d58fd240a0d89b97ed7732667d222 /security | |
parent | 337e547fc1956c2b7372482c33027602c7ecab7a (diff) | |
download | pkgsrc-6bc4b82378d320cd903fb4f49119032662e35c0a.tar.gz |
Manually add patch for new Security issue - local, and possibly remote exploits
are a concern.
http://www.pine.nl/advisories/pine-cert-20020301.txt
Diffstat (limited to 'security')
-rw-r--r-- | security/openssh/distinfo | 3 | ||||
-rw-r--r-- | security/openssh/patches/patch-ap | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/security/openssh/distinfo b/security/openssh/distinfo index a62400f890b..00925689b71 100644 --- a/security/openssh/distinfo +++ b/security/openssh/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.10 2002/03/07 16:45:34 tron Exp $ +$NetBSD: distinfo,v 1.11 2002/03/07 17:33:25 david Exp $ SHA1 (openssh-3.0.2p1.tar.gz) = c9a7e02936ace163ea58ec42e8e3f95df27fef2a Size (openssh-3.0.2p1.tar.gz) = 781092 bytes @@ -6,3 +6,4 @@ SHA1 (patch-aa) = 275e035cbed29ec3e72d7b3c9290cec8068d742b SHA1 (patch-ab) = 271811fc88fbed42f22fa1dc503dc88953b5d76f SHA1 (patch-ac) = e151977f95723c9bdc48dea5e313b89361b5b515 SHA1 (patch-ah) = 0c75daaa11c6a6e32bce628b8f866008677f155f +SHA1 (patch-ap) = bf248a1b5770fbe1f8251e9355c9d9aea2cf905c diff --git a/security/openssh/patches/patch-ap b/security/openssh/patches/patch-ap new file mode 100644 index 00000000000..7ae11982d85 --- /dev/null +++ b/security/openssh/patches/patch-ap @@ -0,0 +1,13 @@ +$NetBSD: patch-ap,v 1.1 2002/03/07 17:33:25 david Exp $ + +--- channels.c.orig Thu Mar 7 12:24:37 2002 ++++ channels.c +@@ -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; + } |