diff options
author | Mike Gardiner <obz@gentoo.org> | 2004-11-05 03:44:44 +0000 |
---|---|---|
committer | Mike Gardiner <obz@gentoo.org> | 2004-11-05 03:44:44 +0000 |
commit | 9a55b38c07aac962a2446e0b4cd09e23041c762b (patch) | |
tree | 3ce06f90d899df80f9f8f0cf3392790951bfe1c6 /gnome-extra/gnome-system-monitor/files | |
parent | add chasen (diff) | |
download | gentoo-2-9a55b38c07aac962a2446e0b4cd09e23041c762b.tar.gz gentoo-2-9a55b38c07aac962a2446e0b4cd09e23041c762b.tar.bz2 gentoo-2-9a55b38c07aac962a2446e0b4cd09e23041c762b.zip |
Applied execlp patch, as outlined in bug #17880, so that killing an un-owned process really works now.
Diffstat (limited to 'gnome-extra/gnome-system-monitor/files')
-rw-r--r-- | gnome-extra/gnome-system-monitor/files/digest-gnome-system-monitor-2.7.0-r1 | 1 | ||||
-rw-r--r-- | gnome-extra/gnome-system-monitor/files/gnome-system-monitor-execlp.patch | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/gnome-extra/gnome-system-monitor/files/digest-gnome-system-monitor-2.7.0-r1 b/gnome-extra/gnome-system-monitor/files/digest-gnome-system-monitor-2.7.0-r1 new file mode 100644 index 000000000000..3007117e2050 --- /dev/null +++ b/gnome-extra/gnome-system-monitor/files/digest-gnome-system-monitor-2.7.0-r1 @@ -0,0 +1 @@ +MD5 e2e46c3ee26458a808d52071b7420413 gnome-system-monitor-2.7.0.tar.bz2 654517 diff --git a/gnome-extra/gnome-system-monitor/files/gnome-system-monitor-execlp.patch b/gnome-extra/gnome-system-monitor/files/gnome-system-monitor-execlp.patch new file mode 100644 index 000000000000..9d2ed3fee77b --- /dev/null +++ b/gnome-extra/gnome-system-monitor/files/gnome-system-monitor-execlp.patch @@ -0,0 +1,11 @@ +--- gnome-system-monitor-2.7.0/src/util.c 2004-07-19 20:20:08.000000000 +0800 ++++ gnome-system-monitor-2.7.0-patched/src/util.c 2004-11-05 19:29:24.543517008 +0800 +@@ -270,7 +270,7 @@ + freopen ("/dev/null", "w", stdout); + #endif + +- execlp ("su", "su", "-m", user_p, "-c", exec_p, NULL); ++ execlp ("su", "-m", user_p, "-c", exec_p, NULL); + _exit (0); + + } |