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/openssh/patches | |
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/openssh/patches')
-rw-r--r-- | security/openssh/patches/patch-ap | 13 |
1 files changed, 13 insertions, 0 deletions
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; + } |