From 9f0e1689f169b83b8fbdae23e0024cc57dcbc770 Mon Sep 17 00:00:00 2001 From: John Joseph Bachir Date: Thu, 8 Mar 2012 18:11:41 -0500 Subject: [PATCH] mk-ca-bundle.pl: use LWP::UserAgent with proper https verify behavior. An alternative would be: 1. specify HTTPS_CA_DIR and/or HTTPS_CA_FILE 2. ensure that Net::SSL is being used, and IO::Socket::SSL is NOT being used This question and answer explain: http://stackoverflow.com/questions/74358/ --- lib/mk-ca-bundle.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mk-ca-bundle.pl b/lib/mk-ca-bundle.pl index 468553067..0f24ade4c 100755 --- a/lib/mk-ca-bundle.pl +++ b/lib/mk-ca-bundle.pl @@ -32,7 +32,7 @@ # use Getopt::Std; use MIME::Base64; -use LWP::UserAgent; +use LWP::UserAgent 6; use strict; use vars qw($opt_b $opt_h $opt_i $opt_l $opt_n $opt_q $opt_t $opt_u $opt_v);