diff options
author | tb <> | 2020-03-16 15:13:15 +0000 |
---|---|---|
committer | tb <> | 2020-03-16 15:13:15 +0000 |
commit | a62e6b1fd543a8a4f66031fcba26c09016ee6299 (patch) | |
tree | 0085746340a52bd95ff9442552e8a1f570a1f908 /src | |
parent | 32be1a54d46e2dd4e81e6aa7ba36eec513f5833f (diff) | |
download | openbsd-a62e6b1fd543a8a4f66031fcba26c09016ee6299.tar.gz openbsd-a62e6b1fd543a8a4f66031fcba26c09016ee6299.tar.bz2 openbsd-a62e6b1fd543a8a4f66031fcba26c09016ee6299.zip |
Adapt to tls13_record_layer.c r1.30 (the sequence number shouldn't wrap).
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libssl/record_layer/record_layer_test.c | 4 |
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 | }; |