From 355350dab91070021a1c64cd51ef05aec5acf2fd Mon Sep 17 00:00:00 2001 From: jsing <> Date: Thu, 8 Feb 2018 11:31:00 +0000 Subject: Update regress to use tlsext_serverhello_parse(). --- src/regress/lib/libssl/unit/tls_ext_alpn.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/regress/lib/libssl/unit/tls_ext_alpn.c b/src/regress/lib/libssl/unit/tls_ext_alpn.c index df46b73a06..7dec1bfc51 100644 --- a/src/regress/lib/libssl/unit/tls_ext_alpn.c +++ b/src/regress/lib/libssl/unit/tls_ext_alpn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tls_ext_alpn.c,v 1.4 2018/01/27 15:30:43 jsing Exp $ */ +/* $OpenBSD: tls_ext_alpn.c,v 1.5 2018/02/08 11:31:00 jsing Exp $ */ /* * Copyright (c) 2015 Doug Hogan * @@ -317,15 +317,13 @@ static uint8_t proto_invalid_missing9[] = { #define CHECK_BOTH(c_val, s_val, proto) do { \ { \ - unsigned char *p; \ CBS cbs; \ int al; \ \ CBS_init(&cbs, proto, sizeof(proto)); \ CHECK(c_val == tlsext_clienthello_parse(s, &cbs, &al)); \ - p = proto; \ - CHECK(s_val == ssl_parse_serverhello_tlsext(s, &p, \ - sizeof(proto), &al)); \ + CBS_init(&cbs, proto, sizeof(proto)); \ + CHECK(s_val == tlsext_serverhello_parse(s, &cbs, &al)); \ } \ } while (0) -- cgit v1.2.3-55-g6feb