diff options
author | beck <> | 2019-11-18 02:09:58 +0000 |
---|---|---|
committer | beck <> | 2019-11-18 02:09:58 +0000 |
commit | 34c3a0b06b3b47e9a51dc4ba51a5aef8bb2e5004 (patch) | |
tree | 2e64708732730919269a1bf38b331506740feeab | |
parent | 333e1f47a74f568820d388dacc2803ae91b4c4ac (diff) | |
download | openbsd-34c3a0b06b3b47e9a51dc4ba51a5aef8bb2e5004.tar.gz openbsd-34c3a0b06b3b47e9a51dc4ba51a5aef8bb2e5004.tar.bz2 openbsd-34c3a0b06b3b47e9a51dc4ba51a5aef8bb2e5004.zip |
fix printing of client app secret
-rw-r--r-- | src/regress/lib/libssl/key_schedule/key_schedule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libssl/key_schedule/key_schedule.c b/src/regress/lib/libssl/key_schedule/key_schedule.c index 0c66d1c7e4..2746bb593d 100644 --- a/src/regress/lib/libssl/key_schedule/key_schedule.c +++ b/src/regress/lib/libssl/key_schedule/key_schedule.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: key_schedule.c,v 1.8 2019/11/18 02:04:56 beck Exp $ */ | 1 | /* $OpenBSD: key_schedule.c,v 1.9 2019/11/18 02:09:58 beck Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2018-2019 Bob Beck <beck@openbsd.org> | 3 | * Copyright (c) 2018-2019 Bob Beck <beck@openbsd.org> |
4 | * | 4 | * |
@@ -306,7 +306,7 @@ main (int argc, char **argv) | |||
306 | tls13_update_client_traffic_secret(secrets); | 306 | tls13_update_client_traffic_secret(secrets); |
307 | fprintf(stderr, "client_application_traffic after update:\n"); | 307 | fprintf(stderr, "client_application_traffic after update:\n"); |
308 | compare_data(secrets->client_application_traffic.data, 32, | 308 | compare_data(secrets->client_application_traffic.data, 32, |
309 | expected_server_application_traffic_updated, 32); | 309 | expected_client_application_traffic_updated, 32); |
310 | if (memcmp(secrets->client_application_traffic.data, | 310 | if (memcmp(secrets->client_application_traffic.data, |
311 | expected_client_application_traffic_updated, 32) != 0) | 311 | expected_client_application_traffic_updated, 32) != 0) |
312 | FAIL("client_application_traffic does not match after update\n"); | 312 | FAIL("client_application_traffic does not match after update\n"); |