From b17a0400ff313e264a64d8e8769287e8610d255a Mon Sep 17 00:00:00 2001 From: tb Date: Wed, 23 Nov 2022 07:25:01 +0000 Subject: [PATCH] Fix inconsequential copy-paste error CID 377010 --- regress/lib/libcrypto/evp/evp_ecx_test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/regress/lib/libcrypto/evp/evp_ecx_test.c b/regress/lib/libcrypto/evp/evp_ecx_test.c index c035f11b546..e847d8de064 100644 --- a/regress/lib/libcrypto/evp/evp_ecx_test.c +++ b/regress/lib/libcrypto/evp/evp_ecx_test.c @@ -1,4 +1,4 @@ -/* $OpenBSD: evp_ecx_test.c,v 1.2 2022/11/22 20:04:51 tb Exp $ */ +/* $OpenBSD: evp_ecx_test.c,v 1.3 2022/11/23 07:25:01 tb Exp $ */ /* * Copyright (c) 2022 Joel Sing * @@ -725,7 +725,7 @@ ecx_x25519_raw_key_test(void) if (pub_key_len != sizeof(x25519_raw_pub_key_1)) { fprintf(stderr, "FAIL: raw public key length differs " "(%zu != %zu)\n", pub_key_len, - sizeof(x25519_raw_pub_key_2)); + sizeof(x25519_raw_pub_key_1)); goto failure; } if ((pub_key = malloc(pub_key_len)) == NULL) @@ -739,7 +739,7 @@ ecx_x25519_raw_key_test(void) fprintf(stderr, "Got:\n"); hexdump(pub_key, pub_key_len); fprintf(stderr, "Want:\n"); - hexdump(x25519_raw_pub_key_2, sizeof(x25519_raw_pub_key_2)); + hexdump(x25519_raw_pub_key_1, sizeof(x25519_raw_pub_key_1)); goto failure; } -- 2.20.1