summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2020-03-16 15:13:15 +0000
committertb <>2020-03-16 15:13:15 +0000
commitdc99a0fd50f2ded1793b4651a9931696db2b6614 (patch)
tree0085746340a52bd95ff9442552e8a1f570a1f908
parent108f8702aed150676e48a7a8233559c84c82b07f (diff)
downloadopenbsd-dc99a0fd50f2ded1793b4651a9931696db2b6614.tar.gz
openbsd-dc99a0fd50f2ded1793b4651a9931696db2b6614.tar.bz2
openbsd-dc99a0fd50f2ded1793b4651a9931696db2b6614.zip
Adapt to tls13_record_layer.c r1.30 (the sequence number shouldn't wrap).
-rw-r--r--src/regress/lib/libssl/record_layer/record_layer_test.c4
1 files changed, 2 insertions, 2 deletions
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 @@
1/* $OpenBSD: record_layer_test.c,v 1.2 2020/03/13 17:47:38 tb Exp $ */ 1/* $OpenBSD: record_layer_test.c,v 1.3 2020/03/16 15:13:15 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2019, 2020 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2019, 2020 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -103,7 +103,7 @@ struct seq_num_test seq_num_tests[] = {
103 }, 103 },
104 { 104 {
105 .seq_num = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}, 105 .seq_num = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
106 .want_num = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, 106 .want_num = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
107 .want = 0, 107 .want = 0,
108 }, 108 },
109}; 109};