diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-08-09 03:36:19 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-08-09 03:36:19 +0000 |
commit | d6087ab7446a4dd064964fd82ab6e6ad23157d67 (patch) | |
tree | aff75a57be28c3d82efdfeba71f5b16b3c06676c /perl-install/interactive/http.pm | |
parent | e7e3543708edb4a12e0bc744c06420344522eea4 (diff) | |
download | drakx-d6087ab7446a4dd064964fd82ab6e6ad23157d67.tar drakx-d6087ab7446a4dd064964fd82ab6e6ad23157d67.tar.gz drakx-d6087ab7446a4dd064964fd82ab6e6ad23157d67.tar.bz2 drakx-d6087ab7446a4dd064964fd82ab6e6ad23157d67.tar.xz drakx-d6087ab7446a4dd064964fd82ab6e6ad23157d67.zip |
use $F instead of *F
Diffstat (limited to 'perl-install/interactive/http.pm')
-rw-r--r-- | perl-install/interactive/http.pm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/perl-install/interactive/http.pm b/perl-install/interactive/http.pm index b5ade049c..8a453616f 100644 --- a/perl-install/interactive/http.pm +++ b/perl-install/interactive/http.pm @@ -108,9 +108,8 @@ sub ask_fromW { close STDOUT; # page terminated while (1) { - local *F; - open F, "<$pipe_r" or die; - $q = CGI->new(*F); + open(my $F, "<$pipe_r") or die; + $q = CGI->new($F); $q->param('force_exit_dead_prog') and $o->exit; last if $q->param('uid') == $uid; |