summaryrefslogtreecommitdiff
path: root/tests/rehandshake-switch-cert-client.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rehandshake-switch-cert-client.c')
-rw-r--r--tests/rehandshake-switch-cert-client.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/rehandshake-switch-cert-client.c b/tests/rehandshake-switch-cert-client.c
index d79db49ef4..7c28a2fa96 100644
--- a/tests/rehandshake-switch-cert-client.c
+++ b/tests/rehandshake-switch-cert-client.c
@@ -78,7 +78,7 @@ static void try(void)
gnutls_init(&server, GNUTLS_SERVER);
gnutls_certificate_server_set_request(server, GNUTLS_CERT_REQUEST);
gnutls_credentials_set(server, GNUTLS_CRD_CERTIFICATE,
- serverx509cred);
+ serverx509cred);
gnutls_priority_set_direct(server,
"NORMAL",
@@ -118,7 +118,7 @@ static void try(void)
exit(1);
ret = gnutls_credentials_set(client, GNUTLS_CRD_CERTIFICATE,
- clientx509cred);
+ clientx509cred);
if (ret < 0)
exit(1);
@@ -139,7 +139,7 @@ static void try(void)
/* switch server's certificate and rehandshake */
gnutls_credentials_set(client, GNUTLS_CRD_CERTIFICATE,
- clientx509cred2);
+ clientx509cred2);
HANDSHAKE_EXPECT(client, server, GNUTLS_E_AGAIN, GNUTLS_E_SESSION_USER_ID_CHANGED);