From 11a5726ee3d8292a4ef5625e8da74d4bdc51271c Mon Sep 17 00:00:00 2001 From: Alessandro Ghedini Date: Wed, 10 Jan 2018 09:49:19 +0000 Subject: [PATCH] tool: update selection of draft22 TLS 1.3 variant Change-Id: I7085a07dd2f3d802ada049a2f771ff0c74f4f902 Reviewed-on: https://boringssl-review.googlesource.com/24764 Reviewed-by: Steven Valdez Commit-Queue: Steven Valdez CQ-Verified: CQ bot account: commit-bot@chromium.org --- tool/client.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/client.cc b/tool/client.cc index fc8f5e06..de1a8ca3 100644 --- a/tool/client.cc +++ b/tool/client.cc @@ -333,7 +333,7 @@ static bool DoConnection(SSL_CTX *ctx, static bool GetTLS13Variant(tls13_variant_t *out, const std::string &in) { if (in == "draft22") { - *out = tls13_default; + *out = tls13_draft22; return true; } if (in == "experiment2") {