diff options
author | Daniel Stenberg <daniel@haxx.se> | 2012-03-31 19:48:15 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-03-31 19:51:36 +0200 |
commit | 33d044a8628ac40418e1e5e698b0fd90c722a07f (patch) | |
tree | 6841ccc42d04b846830fa9772006a9944780dc74 /lib/mk-ca-bundle.pl | |
parent | a9086e8a4b07f467ca12434fbe5f1e7e4348ba9a (diff) | |
download | curl-33d044a8628ac40418e1e5e698b0fd90c722a07f.tar.gz |
Revert "mk-ca-bundle.pl: use LWP::UserAgent for https"
This reverts commit 9f0e1689f169b83b8fbdae23e0024cc57dcbc770.
It turned out that "improvement" instead made the fetching of the
certificates unreliable
Bug: http://curl.haxx.se/mail/lib-2012-03/0238.html
Reported by: Tim Heckman
Diffstat (limited to 'lib/mk-ca-bundle.pl')
-rwxr-xr-x | lib/mk-ca-bundle.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mk-ca-bundle.pl b/lib/mk-ca-bundle.pl index 0f24ade4c..468553067 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 6; +use LWP::UserAgent; use strict; use vars qw($opt_b $opt_h $opt_i $opt_l $opt_n $opt_q $opt_t $opt_u $opt_v); |