diff options
author | pat <pat@FreeBSD.org> | 2002-01-26 14:58:57 +0000 |
---|---|---|
committer | pat <pat@FreeBSD.org> | 2002-01-26 14:58:57 +0000 |
commit | 72e526f510f95596fcb84a262bfe3962760d60f7 (patch) | |
tree | 5646005a991882b56abaaf3dd9d0f20d91286e21 /x11 | |
parent | 8fc1b5b95c89f5e1c8fa65f21a575d60b9839995 (diff) | |
download | FreeBSD-ports-72e526f510f95596fcb84a262bfe3962760d60f7.zip FreeBSD-ports-72e526f510f95596fcb84a262bfe3962760d60f7.tar.gz |
Update to 0.7.1 and keep forbidden.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/launch.app/Makefile | 2 | ||||
-rw-r--r-- | x11/launch.app/distinfo | 2 | ||||
-rw-r--r-- | x11/launch.app/files/patch-execute.c | 18 |
3 files changed, 2 insertions, 20 deletions
diff --git a/x11/launch.app/Makefile b/x11/launch.app/Makefile index 586d4c0..5eb008d 100644 --- a/x11/launch.app/Makefile +++ b/x11/launch.app/Makefile @@ -6,7 +6,7 @@ # PORTNAME= launch.app -PORTVERSION= 0.7.0 +PORTVERSION= 0.7.1 CATEGORIES= x11 windowmaker MASTER_SITES= http://stepmaker.sourceforge.net/launch/ DISTNAME= ${PORTNAME:S/l/L/}-${PORTVERSION} diff --git a/x11/launch.app/distinfo b/x11/launch.app/distinfo index e88ffc2..f24b067 100644 --- a/x11/launch.app/distinfo +++ b/x11/launch.app/distinfo @@ -1 +1 @@ -MD5 (Launch.app-0.7.0.tar.gz) = b6ca0abd8dea0cac54daf33fba4db1e9 +MD5 (Launch.app-0.7.1.tar.gz) = 25849532786aa0a8f76177f3b9164c6d diff --git a/x11/launch.app/files/patch-execute.c b/x11/launch.app/files/patch-execute.c deleted file mode 100644 index c7b2c82..0000000 --- a/x11/launch.app/files/patch-execute.c +++ /dev/null @@ -1,18 +0,0 @@ ---- execute.c.orig Thu Oct 18 13:56:26 2001 -+++ execute.c Thu Jan 10 13:48:12 2002 -@@ -161,13 +161,13 @@ - pid = fork (); - if (pid == 0) - { -- if (setuid (pw->pw_gid)) -+ if (setgid (pw->pw_gid)) - { - // fprintf (stderr, "unable to set group id\n"); - SMRunAttentionPanel (wm_screen, LaunchPanel->window, - "Command Execution", "Unable to set group ID.", NULL, NULL, "Ok"); - } -- if (setgid (pw->pw_uid)) -+ if (setuid (pw->pw_uid)) - { - // fprintf (stderr, "unable to set user id\n"); - SMRunAttentionPanel (wm_screen, LaunchPanel->window, |