diff options
author | kris <kris@FreeBSD.org> | 2001-02-10 07:06:50 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2001-02-10 07:06:50 +0800 |
commit | 70925240a517637e8282386f1e801445640cc164 (patch) | |
tree | f35eb9d18df2195c801ce5378e44e922628c280b /security | |
parent | 39d23b055b6b7d9b0630295d51fd6a3d32542a3b (diff) | |
download | freebsd-ports-gnome-70925240a517637e8282386f1e801445640cc164.tar.gz freebsd-ports-gnome-70925240a517637e8282386f1e801445640cc164.tar.zst freebsd-ports-gnome-70925240a517637e8282386f1e801445640cc164.zip |
Sigh, the patch released by ssh.com was wrong (kill() had the arguments
in the wrong order). Fix this, and bump PORTREVISION again. The window
was only a few minutes, but this won't disrupt things, and someone may
have updated in that window given the prominence of the problem.
Obtained from: Matt Power <mhpower@BOS.BINDVIEW.COM> via Bugtraq
Diffstat (limited to 'security')
-rw-r--r-- | security/ssh/Makefile | 2 | ||||
-rw-r--r-- | security/ssh/files/patch-ay | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/security/ssh/Makefile b/security/ssh/Makefile index cd1cae108e01..11e4183e0704 100644 --- a/security/ssh/Makefile +++ b/security/ssh/Makefile @@ -10,7 +10,7 @@ PORTNAME= ssh PORTVERSION= 1.2.27 # Note, 1.2.30 is under a more restrictive license -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security ipv6 MASTER_SITES= ftp://ftp.cs.engr.uky.edu/cs/software/ \ ftp://ftp.cs.umn.edu/dept/users/rybski/ \ diff --git a/security/ssh/files/patch-ay b/security/ssh/files/patch-ay index 51e949e323e3..71daac2ca4a9 100644 --- a/security/ssh/files/patch-ay +++ b/security/ssh/files/patch-ay @@ -10,7 +10,7 @@ + if (time(NULL) - last_kill_time > 60 && getppid() != 1) + { + last_kill_time = time(NULL); -+ kill(SIGALRM, getppid()); ++ kill(getppid(), SIGALRM); + } + fatal("Bad result from rsa_private_decrypt"); + } |