From: tb Date: Mon, 1 Feb 2021 15:35:41 +0000 (+0000) Subject: Use "EC/RSA key setup failure" to align error with others X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=e3a30b143edf53ad57df026de989c6b7fdbf5192;p=openbsd Use "EC/RSA key setup failure" to align error with others ok eric jsing --- diff --git a/lib/libtls/tls.c b/lib/libtls/tls.c index f8f18b9feee..262ec3dbbf9 100644 --- a/lib/libtls/tls.c +++ b/lib/libtls/tls.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tls.c,v 1.88 2021/01/26 12:51:22 eric Exp $ */ +/* $OpenBSD: tls.c,v 1.89 2021/02/01 15:35:41 tb Exp $ */ /* * Copyright (c) 2014 Joel Sing * @@ -404,14 +404,14 @@ tls_keypair_setup_pkey(struct tls *ctx, struct tls_keypair *keypair, EVP_PKEY *p case EVP_PKEY_RSA: if ((rsa = EVP_PKEY_get1_RSA(pkey)) == NULL || RSA_set_ex_data(rsa, 0, keypair->pubkey_hash) == 0) { - tls_set_errorx(ctx, "failed to setup RSA key"); + tls_set_errorx(ctx, "RSA key setup failure"); goto err; } break; case EVP_PKEY_EC: if ((eckey = EVP_PKEY_get1_EC_KEY(pkey)) == NULL || ECDSA_set_ex_data(eckey, 0, keypair->pubkey_hash) == 0) { - tls_set_errorx(ctx, "failed to setup EC key"); + tls_set_errorx(ctx, "EC key setup failure"); goto err; } break;