From c0355984d149317e708479fbf41b18dea4b44aa2 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Sun, 18 Dec 2016 13:54:15 +0000 Subject: Revise regress for changes to ssl_parse_serverhello_tlsext(). Same diff from inoguchi@ --- src/regress/lib/libssl/unit/tls_ext_alpn.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/regress/lib/libssl/unit/tls_ext_alpn.c b/src/regress/lib/libssl/unit/tls_ext_alpn.c index d792272bf8..e4ad2c5fd4 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.1 2015/07/09 07:47:02 doug Exp $ */ +/* $OpenBSD: tls_ext_alpn.c,v 1.2 2016/12/18 13:54:15 jsing Exp $ */ /* * Copyright (c) 2015 Doug Hogan * @@ -26,7 +26,7 @@ extern int ssl_parse_clienthello_tlsext(SSL *s, unsigned char **p, unsigned char *d, int n, int *al); extern int ssl_parse_serverhello_tlsext(SSL *s, unsigned char **p, - unsigned char *d, int n, int *al); + int n, int *al); /* * In the ProtocolNameList, ProtocolNames must not include empty strings and @@ -325,7 +325,7 @@ static uint8_t proto_invalid_missing9[] = { proto, sizeof(proto), &al)); \ p = proto; \ CHECK(s_val == ssl_parse_serverhello_tlsext(s, &p, \ - proto, sizeof(proto), &al)); \ + sizeof(proto), &al)); \ } \ } while (0) -- cgit v1.2.3-55-g6feb