diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2020-03-16 15:13:16 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2020-03-16 15:13:16 +0000 |
commit | b7290f2db712c8dca7229248eb103ebdd367f8cd (patch) | |
tree | 237f92089eb0e8c766a9aab672c68d2a5aed53fd /regress | |
parent | cec9246a2a4b0b67cc4b3211849b24fb62146374 (diff) |
Adapt to tls13_record_layer.c r1.30 (the sequence number shouldn't wrap).
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libssl/record_layer/record_layer_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libssl/record_layer/record_layer_test.c b/regress/lib/libssl/record_layer/record_layer_test.c index 85d425b920d..8071c1dabd0 100644 --- a/regress/lib/libssl/record_layer/record_layer_test.c +++ b/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 <jsing@openbsd.org> * @@ -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, }, }; |