aboutsummaryrefslogtreecommitdiffstats
path: root/dirmngr/ks-action.c
diff options
context:
space:
mode:
Diffstat (limited to 'dirmngr/ks-action.c')
-rw-r--r--dirmngr/ks-action.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/dirmngr/ks-action.c b/dirmngr/ks-action.c
index 38cd02feb..eb15e40dd 100644
--- a/dirmngr/ks-action.c
+++ b/dirmngr/ks-action.c
@@ -257,7 +257,8 @@ ks_action_get (ctrl_t ctrl, uri_item_t keyservers,
if (is_hkp_s)
err = ks_hkp_get (ctrl, uri->parsed_uri, sl->d, &infp);
else if (is_http_s)
- err = ks_http_fetch (ctrl, uri->parsed_uri->original, &infp);
+ err = ks_http_fetch (ctrl, uri->parsed_uri->original, 1, 0,
+ &infp);
else
BUG ();
@@ -314,7 +315,7 @@ ks_action_fetch (ctrl_t ctrl, const char *url, estream_t outfp)
if (parsed_uri->is_http)
{
- err = ks_http_fetch (ctrl, url, &infp);
+ err = ks_http_fetch (ctrl, url, 1, 0, &infp);
if (!err)
{
err = copy_stream (infp, outfp);