From dc99a0fd50f2ded1793b4651a9931696db2b6614 Mon Sep 17 00:00:00 2001 From: tb <> Date: Mon, 16 Mar 2020 15:13:15 +0000 Subject: Adapt to tls13_record_layer.c r1.30 (the sequence number shouldn't wrap). --- src/regress/lib/libssl/record_layer/record_layer_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/regress/lib/libssl/record_layer/record_layer_test.c b/src/regress/lib/libssl/record_layer/record_layer_test.c index 85d425b920..8071c1dabd 100644 --- a/src/regress/lib/libssl/record_layer/record_layer_test.c +++ b/src/regress/lib/libssl/record_layer/record_layer_test.c @@ -1,4 +1,4 @@ -/* $OpenBSD: record_layer_test.c,v 1.2 2020/03/13 17:47:38 tb Exp $ */ +/* $OpenBSD: record_layer_test.c,v 1.3 2020/03/16 15:13:15 tb Exp $ */ /* * Copyright (c) 2019, 2020 Joel Sing * @@ -103,7 +103,7 @@ struct seq_num_test seq_num_tests[] = { }, { .seq_num = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}, - .want_num = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + .want_num = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}, .want = 0, }, }; -- cgit v1.2.3-55-g6feb