diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-02-02 22:22:15 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-02-02 22:22:15 +0100 |
commit | ec7978c512ab7eaf05a6f7785ebfcd2a4e0a341f (patch) | |
tree | 28d601c40729a52d39be01d561bfa2978f61af43 /lib/mk-ca-bundle.pl | |
parent | 0e9626ba39756b8f063e42ca035714ee65d160ee (diff) | |
download | curl-ec7978c512ab7eaf05a6f7785ebfcd2a4e0a341f.tar.gz |
mk-ca-bundle.pl: use new cacert url
The official Mozilla page at
http://www.mozilla.org/projects/security/certs/ points out a new place
as the "proper" place to get Mozilla's CA certs from so this script is
now updated to use that instead.
Reported by: Daniel Mentz
Diffstat (limited to 'lib/mk-ca-bundle.pl')
-rwxr-xr-x | lib/mk-ca-bundle.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mk-ca-bundle.pl b/lib/mk-ca-bundle.pl index 3586dc468..d054f0044 100755 --- a/lib/mk-ca-bundle.pl +++ b/lib/mk-ca-bundle.pl @@ -6,7 +6,7 @@ # * | (__| |_| | _ <| |___ # * \___|\___/|_| \_\_____| # * -# * Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al. +# * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. # * # * This software is licensed as described in the file COPYING, which # * you should have received as part of this distribution. The terms @@ -36,7 +36,7 @@ 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); -my $url = 'http://mxr.mozilla.org/seamonkey/source/security/nss/lib/ckfw/builtins/certdata.txt?raw=1'; +my $url = 'http://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt?raw=1'; # If the OpenSSL commandline is not in search path you can configure it here! my $openssl = 'openssl'; |