diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-12-19 11:16:53 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-12-19 11:16:53 +0000 |
commit | d6b1548399dbc8eb691ff2efc3f2fec9b7414f18 (patch) | |
tree | e84d9fbbb8f378452a2028efcf93f899eda5704a | |
parent | 2c78f46ea1ba3ab1138689a5f9603c8687ec3f28 (diff) |
acme-client: fix copy-paste error in error message
-rw-r--r-- | usr.sbin/acme-client/acctproc.c | 4 |
1 files 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 <kristaps@bsd.lv> * @@ -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); |