aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-03-04 13:32:39 +0100
committerChristian Grothoff <christian@grothoff.org>2021-03-04 13:32:39 +0100
commitf9aa18c17e11631f12d0145a9c259ba1b772dbc8 (patch)
tree2ebf8dccf318e205856b68113158e505fbf35131 /doc
parentb5c7519d9a4449ffe9fadb6ba30f5295752bb97b (diff)
downloadlibmicrohttpd-f9aa18c17e11631f12d0145a9c259ba1b772dbc8.tar.gz
libmicrohttpd-f9aa18c17e11631f12d0145a9c259ba1b772dbc8.zip
fix example
Diffstat (limited to 'doc')
-rw-r--r--doc/chapters/tlsauthentication.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/chapters/tlsauthentication.inc b/doc/chapters/tlsauthentication.inc
index 90984feb..c5e024e2 100644
--- a/doc/chapters/tlsauthentication.inc
+++ b/doc/chapters/tlsauthentication.inc
@@ -161,7 +161,7 @@ union MHD_ConnectionInfo *ci;
161 161
162ci = MHD_get_connection_info (connection, 162ci = MHD_get_connection_info (connection,
163 MHD_CONNECTION_INFO_GNUTLS_SESSION); 163 MHD_CONNECTION_INFO_GNUTLS_SESSION);
164tls_session = ci->tls_session; 164tls_session = (gnutls_session_t) ci->tls_session;
165@end verbatim 165@end verbatim
166 166
167You can then extract the client certificate: 167You can then extract the client certificate: