summaryrefslogtreecommitdiff
path: root/tests/resume-with-false-start.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/resume-with-false-start.c')
-rw-r--r--tests/resume-with-false-start.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/resume-with-false-start.c b/tests/resume-with-false-start.c
index 26f374c841..69307eb079 100644
--- a/tests/resume-with-false-start.c
+++ b/tests/resume-with-false-start.c
@@ -28,6 +28,7 @@
#include <stdlib.h>
#include <string.h>
#include <errno.h>
+#include <assert.h>
#include <gnutls/gnutls.h>
#include "utils.h"
#include "eagain-common.h"
@@ -104,7 +105,7 @@ void doit(void)
if (ret < 0)
exit(1);
- gnutls_set_default_priority(client);
+ assert(gnutls_priority_set_direct(client, "NORMAL:-VERS-ALL:+VERS-TLS1.2", NULL)>=0);
gnutls_transport_set_push_function(client, client_push);
gnutls_transport_set_pull_function(client, client_pull);
gnutls_transport_set_ptr(client, client);