diff options
Diffstat (limited to 'dirmngr')
-rw-r--r-- | dirmngr/ks-engine-hkp.c | 1 | ||||
-rw-r--r-- | dirmngr/ks-engine-http.c | 1 | ||||
-rw-r--r-- | dirmngr/ocsp.c | 2 | ||||
-rw-r--r-- | dirmngr/server.c | 2 |
4 files changed, 4 insertions, 2 deletions
diff --git a/dirmngr/ks-engine-hkp.c b/dirmngr/ks-engine-hkp.c index 8c3384d49..541c46f55 100644 --- a/dirmngr/ks-engine-hkp.c +++ b/dirmngr/ks-engine-hkp.c @@ -765,6 +765,7 @@ send_request (ctrl_t ctrl, const char *request, const char *hostportstr, err = http_open (&http, post_cb? HTTP_REQ_POST : HTTP_REQ_GET, request, + NULL, /* fixme: AUTH */ NULL, httpflags, /* fixme: proxy*/ NULL, diff --git a/dirmngr/ks-engine-http.c b/dirmngr/ks-engine-http.c index a9399a137..aed3aaa84 100644 --- a/dirmngr/ks-engine-http.c +++ b/dirmngr/ks-engine-http.c @@ -68,6 +68,7 @@ ks_http_fetch (ctrl_t ctrl, const char *url, estream_t *r_fp) err = http_open (&http, HTTP_REQ_GET, url, + /* httphost */ NULL, /* fixme: AUTH */ NULL, 0, /* fixme: proxy*/ NULL, diff --git a/dirmngr/ocsp.c b/dirmngr/ocsp.c index b941b5c81..0d506efcd 100644 --- a/dirmngr/ocsp.c +++ b/dirmngr/ocsp.c @@ -165,7 +165,7 @@ do_ocsp_request (ctrl_t ctrl, ksba_ocsp_t ocsp, gcry_md_hd_t md, } once_more: - err = http_open (&http, HTTP_REQ_POST, url, NULL, + err = http_open (&http, HTTP_REQ_POST, url, NULL, NULL, (opt.honor_http_proxy? HTTP_FLAG_TRY_PROXY:0), opt.http_proxy, NULL, NULL, NULL); if (err) diff --git a/dirmngr/server.c b/dirmngr/server.c index bdfb755d3..6cf4dd668 100644 --- a/dirmngr/server.c +++ b/dirmngr/server.c @@ -298,7 +298,7 @@ skip_options (char *line) } -/* Return an error if the assuan context does not belong to teh owner +/* Return an error if the assuan context does not belong to the owner of the process or to root. On error FAILTEXT is set as Assuan error string. */ static gpg_error_t |