[git] GnuPG - branch, master, updated. gnupg-2.1.2-46-g5136e39
by Werner Koch
cvs at cvs.gnupg.org
Fri Mar 20 13:22:47 CET 2015
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GNU Privacy Guard".
The branch, master has been updated
via 5136e39c6466de90697153ea253c4b540c1f7d1a (commit)
from e7ddaad0fd2c8774a1d3367adfaa68014eaf65de (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 5136e39c6466de90697153ea253c4b540c1f7d1a
Author: Werner Koch <wk at gnupg.org>
Date: Fri Mar 20 13:20:04 2015 +0100
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 at gnupg.org>
diff --git a/common/http.c b/common/http.c
index 12e3fcb..271257d 100644
--- a/common/http.c
+++ b/common/http.c
@@ -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));
-----------------------------------------------------------------------
Summary of changes:
common/http.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
The GNU Privacy Guard
http://git.gnupg.org
More information about the Gnupg-commits
mailing list