diff options
author | 2019-06-17 08:59:33 +0000 | |
---|---|---|
committer | 2019-06-17 08:59:33 +0000 | |
commit | c313e8c29c28eb82764d0795ec2987c594612963 (patch) | |
tree | db436e2b515e27ee4ec395825fbad82fb01702f9 | |
parent | Mention EM_PPC64; from jsg@ (diff) | |
download | wireguard-openbsd-c313e8c29c28eb82764d0795ec2987c594612963.tar.xz wireguard-openbsd-c313e8c29c28eb82764d0795ec2987c594612963.zip |
s/get1/get0/ in comments
-rw-r--r-- | usr.sbin/acme-client/acctproc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/acme-client/acctproc.c b/usr.sbin/acme-client/acctproc.c index 54b1822acd2..a904dea8925 100644 --- a/usr.sbin/acme-client/acctproc.c +++ b/usr.sbin/acme-client/acctproc.c @@ -1,4 +1,4 @@ -/* $Id: acctproc.c,v 1.16 2019/06/16 11:44:22 florian Exp $ */ +/* $Id: acctproc.c,v 1.17 2019/06/17 08:59:33 florian Exp $ */ /* * Copyright (c) 2016 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -77,7 +77,7 @@ op_thumb_rsa(EVP_PKEY *pkey) RSA *r; if ((r = EVP_PKEY_get0_RSA(pkey)) == NULL) - warnx("EVP_PKEY_get1_RSA"); + warnx("EVP_PKEY_get0_RSA"); else if ((mod = bn2string(r->n)) == NULL) warnx("bn2string"); else if ((exp = bn2string(r->e)) == NULL) @@ -168,7 +168,7 @@ op_sign_rsa(char **prot, EVP_PKEY *pkey, const char *nonce, const char *url) */ if ((r = EVP_PKEY_get0_RSA(pkey)) == NULL) - warnx("EVP_PKEY_get1_RSA"); + warnx("EVP_PKEY_get0_RSA"); else if ((mod = bn2string(r->n)) == NULL) warnx("bn2string"); else if ((exp = bn2string(r->e)) == NULL) |