mirror of
https://github.com/curl/curl.git
synced 2026-07-27 03:27:15 +03:00
enable strict where missing cleanup
This commit is contained in:
parent
9ba943e38e
commit
6c1879abb6
2 changed files with 6 additions and 6 deletions
|
|
@ -23,6 +23,9 @@
|
|||
#
|
||||
#***************************************************************************
|
||||
|
||||
use strict;
|
||||
use warnings 'FATAL' => 'all';
|
||||
|
||||
# This script invokes nghttpx properly to have it serve HTTP/2 for us.
|
||||
# nghttpx runs as a proxy in front of our "actual" HTTP/1 server.
|
||||
use Cwd;
|
||||
|
|
@ -30,9 +33,6 @@ use Cwd 'abs_path';
|
|||
use File::Basename;
|
||||
use File::Spec;
|
||||
|
||||
use strict;
|
||||
use warnings 'FATAL' => 'all';
|
||||
|
||||
my $logdir = "log";
|
||||
my $pidfile = "$logdir/nghttpx.pid";
|
||||
my $logfile = "$logdir/http2.log";
|
||||
|
|
|
|||
|
|
@ -23,6 +23,9 @@
|
|||
#
|
||||
#***************************************************************************
|
||||
|
||||
use strict;
|
||||
use warnings 'FATAL' => 'all';
|
||||
|
||||
# This script invokes nghttpx properly to have it serve HTTP/3 for us.
|
||||
# nghttpx runs as a proxy in front of our "actual" HTTP/1 server.
|
||||
|
||||
|
|
@ -31,9 +34,6 @@ use Cwd 'abs_path';
|
|||
use File::Basename;
|
||||
use File::Spec;
|
||||
|
||||
use strict;
|
||||
use warnings 'FATAL' => 'all';
|
||||
|
||||
my $logdir = "log";
|
||||
my $pidfile = "$logdir/nghttpx.pid";
|
||||
my $logfile = "$logdir/http3.log";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue