From cff45ef86bfb6530b05bafb991acd90647fb1260 Mon Sep 17 00:00:00 2001 From: Ken-ichi Mito Date: Wed, 5 Mar 2014 06:39:15 +0900 Subject: [PATCH] use Getopt::Long safely * see http://d.hatena.ne.jp/tagomoris/20120918/1347991165 --- misc/httpbench.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/httpbench.pl b/misc/httpbench.pl index fc5a218..c36ed64 100755 --- a/misc/httpbench.pl +++ b/misc/httpbench.pl @@ -4,7 +4,7 @@ use strict; use warnings; use utf8; -use Getopt::Long; +use Getopt::Long qw(:config posix_default no_ignore_case gnu_compat); use Parallel::ForkManager; use LWP::Simple; use Time::HiRes qw(sleep); -- 1.7.9.5