diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | wrapper | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -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 @@ -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); } |