summaryrefslogtreecommitdiff
path: root/lib/gnutls_handshake.c
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2010-05-09 17:20:40 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2010-06-03 19:40:27 +0200
commitc67a003f2467fa3daf7ca2b85247df80c24e0ea2 (patch)
tree8a15c4a4a5e635e624b56ebbd04434c84091bce8 /lib/gnutls_handshake.c
parent96febfef5a80a4e128683663e3cdc4a50f8db78c (diff)
downloadgnutls-c67a003f2467fa3daf7ca2b85247df80c24e0ea2.tar.gz
Added initial PKCS #11 support. Certtool can now print lists of certificates
available in system.
Diffstat (limited to 'lib/gnutls_handshake.c')
-rw-r--r--lib/gnutls_handshake.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/gnutls_handshake.c b/lib/gnutls_handshake.c
index 7bf79b4af3..d5b8ab18ff 100644
--- a/lib/gnutls_handshake.c
+++ b/lib/gnutls_handshake.c
@@ -1662,7 +1662,7 @@ _gnutls_client_check_if_resuming (gnutls_session_t session,
session_id_len);
_gnutls_handshake_log ("HSK[%p]: SessionID: %s\n", session,
_gnutls_bin2hex (session_id, session_id_len, buf,
- sizeof (buf)));
+ sizeof (buf), NULL));
if (session_id_len > 0 &&
session->internals.resumed_security_parameters.session_id_size ==
@@ -2249,7 +2249,7 @@ _gnutls_send_server_hello (gnutls_session_t session, int again)
_gnutls_handshake_log ("HSK[%p]: SessionID: %s\n", session,
_gnutls_bin2hex (session->security_parameters.
session_id, session_id_len, buf,
- sizeof (buf)));
+ sizeof (buf), NULL));
memcpy (&data[pos],
session->security_parameters.current_cipher_suite.suite, 2);
@@ -2757,7 +2757,7 @@ _gnutls_handshake_client (gnutls_session_t session)
internals.resumed_security_parameters.session_id,
session->
internals.resumed_security_parameters.session_id_size,
- buf, sizeof (buf)));
+ buf, sizeof (buf), NULL));
#endif
switch (STATE)