From 73c851144720e28b21a491b6250385170db9d752 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 24 Apr 2003 19:00:12 +0000 Subject: perl_checker adaptations + fixes --- perl-install/interactive/http.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'perl-install/interactive/http.pm') diff --git a/perl-install/interactive/http.pm b/perl-install/interactive/http.pm index a4f9e3bfd..27ae507d8 100644 --- a/perl-install/interactive/http.pm +++ b/perl-install/interactive/http.pm @@ -17,7 +17,7 @@ my $uid; my $pipe_r = "/tmp/interactive_http_r"; my $pipe_w = "/tmp/interactive_http_w"; -sub open_stdout { +sub open_stdout() { open STDOUT, ">$pipe_w" or die; $| = 1; print CGI::header(); @@ -31,12 +31,12 @@ sub cont_stdout { $no_header = 0; } -sub new_uid { +sub new_uid() { my ($s, $ms) = gettimeofday(); $s * 256 + $ms % 256; } -sub new() { +sub new { open_stdout(); bless {}, $_[0]; } @@ -49,7 +49,7 @@ sub end() { close STDOUT; unlink $pipe_r, $pipe_w; } -sub exit() { end(); exit($_[1]) } +sub exit { end(); exit($_[1]) } END { end() } sub ask_fromW { -- cgit v1.2.1