mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-03 12:11:33 +01:00
dirmngr: Fix https never reported in general help
* dirmngr/ks-engine-http.c (ks_hkp_help): Also print https when supported and no uri provided. -- Wrong reporting was pointed out by K_F, again.
This commit is contained in:
parent
a0642856b2
commit
6272f24312
@ -44,8 +44,14 @@ ks_http_help (ctrl_t ctrl, parsed_uri_t uri)
|
||||
"Supported methods: fetch\n";
|
||||
gpg_error_t err;
|
||||
|
||||
#if HTTP_USE_GNUTLS || HTTP_USE_NTBTLS
|
||||
const char data2[] = " http\n https";
|
||||
#else
|
||||
const char data2[] = " http";
|
||||
#endif
|
||||
|
||||
if (!uri)
|
||||
err = ks_print_help (ctrl, " http");
|
||||
err = ks_print_help (ctrl, data2);
|
||||
else if (uri->is_http && strcmp (uri->scheme, "hkp"))
|
||||
err = ks_print_help (ctrl, data);
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user