mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
dirmngr: Use system provided root CAs with KS_FETCH.
* dirmngr/ks-engine-http.c (ks_http_fetch): Use HTTP_FLAG_TRUST_SYS. Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
fd765df6a7
commit
c3aeda82b8
@ -73,7 +73,9 @@ ks_http_fetch (ctrl_t ctrl, const char *url, estream_t *r_fp)
|
||||
estream_t fp = NULL;
|
||||
char *request_buffer = NULL;
|
||||
|
||||
err = http_session_new (&session, NULL, NULL, HTTP_FLAG_TRUST_DEF);
|
||||
/* Note that we only use the system provided certificates with the
|
||||
* fetch command. */
|
||||
err = http_session_new (&session, NULL, NULL, HTTP_FLAG_TRUST_SYS);
|
||||
if (err)
|
||||
goto leave;
|
||||
http_session_set_log_cb (session, cert_log_cb);
|
||||
|
@ -476,7 +476,8 @@ only LDAP supports them all.
|
||||
@opindex fetch-keys
|
||||
Retrieve keys located at the specified URIs. Note that different
|
||||
installations of GnuPG may support different protocols (HTTP, FTP,
|
||||
LDAP, etc.)
|
||||
LDAP, etc.). When using HTTPS the system provided root certificates
|
||||
are used by this command.
|
||||
|
||||
@item --update-trustdb
|
||||
@opindex update-trustdb
|
||||
|
Loading…
x
Reference in New Issue
Block a user