diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-03-10 18:44:16 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-03-10 18:44:16 +0000 |
commit | 9449d173bc88c27befd4f20c78ccee9f67964957 (patch) | |
tree | c168ff3819dbdff857b1e13e62c72d35a951d235 | |
parent | f1bfe33c3b8673e3bb2451fd7dc9a8b8d419180c (diff) | |
download | control-center-9449d173bc88c27befd4f20c78ccee9f67964957.tar control-center-9449d173bc88c27befd4f20c78ccee9f67964957.tar.gz control-center-9449d173bc88c27befd4f20c78ccee9f67964957.tar.bz2 control-center-9449d173bc88c27befd4f20c78ccee9f67964957.tar.xz control-center-9449d173bc88c27befd4f20c78ccee9f67964957.zip |
fix calling userdrake without consolehelper-gtk else we kill
consolehelper-gtk instead of userdrake (#34892)
We were calling /usr/bin/userdrake instead of
/usr/sbin/userdrake. Thus we run consolehelper-gtk that then run
userdrake.
When trying to kill userdrake, we actually killed consolehelper-gtk
whereas userdrake was still running. Hence first kill did nothing and
second kill closed mcc
-rw-r--r-- | NEWS | 3 | ||||
-rwxr-xr-x | control-center | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,6 @@ +- fix calling userdrake without consolehelper-gtk else we kill + consolehelper-gtk instead of userdrake (#34892) + Version 10.17 - 7 March 2008, Thierry Vignaud - add "Parental Controls" icon diff --git a/control-center b/control-center index 4bd867d5..606ca2bd 100755 --- a/control-center +++ b/control-center @@ -718,7 +718,7 @@ my %programs = "Users" => { # too big - binary => "$bindir/userdrake", + binary => "$sbindir/userdrake", embedded => 1, description => N("Manage users on system"), long_description => N("Add, remove or change users of the system"), |