summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--wrapper4
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);
}