From 0e3d72eca499579b4a88d8ef183f40f621d5983b Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 23 Oct 2003 09:31:15 +0000 Subject: don't use exit(), use _exit() --- perl-install/install_steps_gtk.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm index 594039754..142b16cbf 100644 --- a/perl-install/install_steps_gtk.pm +++ b/perl-install/install_steps_gtk.pm @@ -61,7 +61,7 @@ sub new($$) { launch_X: if (!fork()) { c::setsid(); - exec $server, @options or exit 1; + exec $server, @options or c::_exit(1); } my $nb; foreach (1..60) { -- cgit v1.2.1