mirror of
https://github.com/webmin/webmin.git
synced 2026-02-03 14:13:29 +00:00
Fix not to use barewords for file handler
This commit is contained in:
@@ -73,9 +73,9 @@ if ($@) {
|
||||
# Pick a port and configure Webmin to proxy it
|
||||
my $port = $config{'base_port'} || 555;
|
||||
while(1) {
|
||||
&open_socket("127.0.0.1", $port, TEST, \$err);
|
||||
&open_socket("127.0.0.1", $port, my $fh, \$err);
|
||||
last if ($err);
|
||||
close(TEST);
|
||||
close($fh);
|
||||
$port++;
|
||||
}
|
||||
my %miniserv;
|
||||
|
||||
Reference in New Issue
Block a user