From 23921d49f5548ae441142ce79d673fdfb3aeecff Mon Sep 17 00:00:00 2001 From: tb Date: Mon, 19 Dec 2022 11:16:52 +0000 Subject: [PATCH] acme-client: fix copy-paste error in error message --- usr.sbin/acme-client/acctproc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/acme-client/acctproc.c b/usr.sbin/acme-client/acctproc.c index d9cddc9b210..e3a0eb64dec 100644 --- a/usr.sbin/acme-client/acctproc.c +++ b/usr.sbin/acme-client/acctproc.c @@ -1,4 +1,4 @@ -/* $Id: acctproc.c,v 1.30 2022/12/18 12:39:59 tb Exp $ */ +/* $Id: acctproc.c,v 1.31 2022/12/19 11:16:52 tb Exp $ */ /* * Copyright (c) 2016 Kristaps Dzonsons * @@ -120,7 +120,7 @@ op_thumb_ec(EVP_PKEY *pkey) else if ((y = bn2string(Y)) == NULL) warnx("bn2string"); else if ((json = json_fmt_thumb_ec(x, y)) == NULL) - warnx("json_fmt_thumb_rsa"); + warnx("json_fmt_thumb_ec"); BN_free(X); BN_free(Y); -- 2.20.1