mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
common: Fix syntax error when building with gnutls
* common/http.c (send_request): Add missing comma. -- This fixes commit dc10d46. Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
e7ddaad0fd
commit
5136e39c64
@ -1453,7 +1453,7 @@ send_request (http_t hd, const char *httphost, const char *auth,
|
||||
# elif HTTP_USE_GNUTLS
|
||||
rc = gnutls_server_name_set (hd->session->tls_session,
|
||||
GNUTLS_NAME_DNS,
|
||||
hd->session->servername
|
||||
hd->session->servername,
|
||||
strlen (hd->session->servername));
|
||||
if (rc < 0)
|
||||
log_info ("gnutls_server_name_set failed: %s\n", gnutls_strerror (rc));
|
||||
|
Loading…
x
Reference in New Issue
Block a user