From cd32ebd152a522e362469ab969d91f8d49f28a60 Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Fri, 17 Feb 2017 21:59:45 +0100 Subject: [PATCH] dirmngr: Strip the default https port from the Host: header. * dirmngr/http.c (send_request): Strip the default https port. -- GnuPG-bug-id: 2965 Signed-off-by: Werner Koch --- dirmngr/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dirmngr/http.c b/dirmngr/http.c index 0889cb1ee..0f6cac652 100644 --- a/dirmngr/http.c +++ b/dirmngr/http.c @@ -1942,7 +1942,7 @@ send_request (http_t hd, const char *httphost, const char *auth, { char portstr[35]; - if (port == 80) + if (port == (hd->uri->use_tls? 443 : 80)) *portstr = 0; else snprintf (portstr, sizeof portstr, ":%u", port);