From e38fe3bf8daed57b94952119ae517bef23b2d480 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Thu, 10 Jul 2014 21:48:59 +0200 Subject: fix doble fork (Colin Guthrie) --- NEWS | 1 + wrapper | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 511158b4..d519072d 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,5 @@ - fix not displaying contributors in about dialog (mga#13093) +- fix doble fork (Colin Guthrie) Version 12.51 - 25 January 2014, Colin Guthrie diff --git a/wrapper b/wrapper index 56627542..de74b977 100644 --- a/wrapper +++ b/wrapper @@ -28,7 +28,7 @@ use lib qw(/usr/lib/libDrakX); use common; if (check_for_xserver()) { - exec ("/usr/bin/pkexec", "/usr/libexec/drakconf", @ARGV); + system("/usr/bin/pkexec", "/usr/libexec/drakconf", @ARGV); } else { - exec ("/usr/bin/pkexec", "/usr/libexec/drakxconf", @ARGV); + system("/usr/bin/pkexec", "/usr/libexec/drakxconf", @ARGV); } -- cgit v1.2.1